projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d8531c
)
Adding a destructor to ProofOutputChannel.
author
Tim King
<taking@google.com>
Mon, 1 Feb 2016 19:09:09 +0000
(11:09 -0800)
committer
Tim King
<taking@google.com>
Mon, 1 Feb 2016 19:09:09 +0000
(11:09 -0800)
src/proof/theory_proof.cpp
patch
|
blob
|
history
diff --git
a/src/proof/theory_proof.cpp
b/src/proof/theory_proof.cpp
index 1bc8ae9496cedac34b95c3b46d9157a83c1abc04..6679cf896e5dbf466b25e79eac298b728051c3eb 100644
(file)
--- a/
src/proof/theory_proof.cpp
+++ b/
src/proof/theory_proof.cpp
@@
-55,6
+55,7
@@
public:
Node d_lemma;
ProofOutputChannel() : d_conflict(), d_proof(NULL) {}
+ virtual ~ProofOutputChannel() throw() {}
void conflict(TNode n, Proof* pf) throw() {
Trace("theory-proof-debug") << "; CONFLICT: " << n << std::endl;
@@
-90,7
+91,7
@@
public:
};/* class ProofOutputChannel */
//for proof replay
-class MyPreRegisterVisitor {
+class MyPreRegisterVisitor {
theory::Theory* d_theory;
__gnu_cxx::hash_set<TNode, TNodeHashFunction> d_visited;
public: