summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine_scope.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_engine_scope.cpp')
-rw-r--r--src/smt/smt_engine_scope.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/smt/smt_engine_scope.cpp b/src/smt/smt_engine_scope.cpp
index c16278962..4b593f075 100644
--- a/src/smt/smt_engine_scope.cpp
+++ b/src/smt/smt_engine_scope.cpp
@@ -17,8 +17,8 @@
#include "smt/smt_engine_scope.h"
+#include "base/check.h"
#include "base/configuration_private.h"
-#include "base/cvc4_assert.h"
#include "base/output.h"
#include "proof/proof.h"
#include "smt/smt_engine.h"
@@ -40,7 +40,8 @@ ProofManager* currentProofManager() {
Assert(s_smtEngine_current != NULL);
return s_smtEngine_current->d_proofManager;
#else /* IS_PROOFS_BUILD */
- InternalError("proofs/unsat cores are not on, but ProofManager requested");
+ InternalError()
+ << "proofs/unsat cores are not on, but ProofManager requested";
return NULL;
#endif /* IS_PROOFS_BUILD */
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback