summaryrefslogtreecommitdiff
path: root/src/proof/theory_proof.cpp
diff options
context:
space:
mode:
authorAndres Notzli <andres.noetzli@gmail.com>2016-07-26 21:07:24 -0700
committerAndres Notzli <andres.noetzli@gmail.com>2016-07-26 21:07:24 -0700
commit490489a78beca486df5d4a0d8b7704e6235ca6fc (patch)
treeb0674f1f2ec1969d7422aa8ff21b4905a861a052 /src/proof/theory_proof.cpp
parentfc618e8c18a19012384ae1585fefc9ce11f55d71 (diff)
Fix warnings in src/proof
Fix warning due to `ProofLetCount` being defined as `struct` in `proof_utils.h` and `class` in `proof.h`. Fix warnings due to different number of arguments of `printConstantDisequalityProof()` and `printTheoryLemmaProof()` in subclasses.
Diffstat (limited to 'src/proof/theory_proof.cpp')
-rw-r--r--src/proof/theory_proof.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proof/theory_proof.cpp b/src/proof/theory_proof.cpp
index eae8a68df..8aefaae45 100644
--- a/src/proof/theory_proof.cpp
+++ b/src/proof/theory_proof.cpp
@@ -1167,7 +1167,8 @@ void LFSCBooleanProof::printAliasingDeclarations(std::ostream& os, std::ostream&
void LFSCBooleanProof::printTheoryLemmaProof(std::vector<Expr>& lemma,
std::ostream& os,
- std::ostream& paren) {
+ std::ostream& paren,
+ const ProofLetMap& map) {
Unreachable("No boolean lemmas yet!");
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback