diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-04-05 04:01:56 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-04-05 04:01:56 +0000 |
commit | 1efbeceedbb00267f38d0dfc9b24307ad3e1feca (patch) | |
tree | d6b9ac96dd6331b48982b0afe9759fe1e06cafba /stp/sat/Solver.h | |
parent | eaa01d355abd0e69bfec9d5b61f1330f42ff1fe8 (diff) | |
download | klee-1efbeceedbb00267f38d0dfc9b24307ad3e1feca.tar.gz |
STP: Eliminate use of non-standard variadic macro.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@100392 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'stp/sat/Solver.h')
-rw-r--r-- | stp/sat/Solver.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/stp/sat/Solver.h b/stp/sat/Solver.h index 8826fac7..0a6dc87e 100644 --- a/stp/sat/Solver.h +++ b/stp/sat/Solver.h @@ -24,9 +24,6 @@ OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWA #include "VarOrder.h" namespace MINISAT { -// Redfine if you want output to go somewhere else: -#define reportf(format, args...) ( printf(format , ## args), fflush(stdout) ) - //================================================================================================= // Solver -- the main class: |