summaryrefslogtreecommitdiff
path: root/src/proof/theory_proof.cpp
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-05-02 15:49:05 -0700
committerAndres Noetzli <andres.noetzli@gmail.com>2018-05-02 15:49:05 -0700
commit09f05443d60b0edf61d29acd5ca17d35b932a5cc (patch)
tree633fbf7bf2102304ae23dc7be9a794fe91b05211 /src/proof/theory_proof.cpp
parentd3f4ac852146c41341e485d9035f3631993e3fa5 (diff)
Fix warnings in proof code
Adds missing `override`s and removes the `inline` keyword from a function that is defined in the source file.
Diffstat (limited to 'src/proof/theory_proof.cpp')
-rw-r--r--src/proof/theory_proof.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/theory_proof.cpp b/src/proof/theory_proof.cpp
index 34f3a92ec..d6181423f 100644
--- a/src/proof/theory_proof.cpp
+++ b/src/proof/theory_proof.cpp
@@ -1264,7 +1264,7 @@ void TheoryProof::printRewriteProof(std::ostream& os, const Node &n1, const Node
os << "))";
}
-inline bool TheoryProof::match(TNode n1, TNode n2)
+bool TheoryProof::match(TNode n1, TNode n2)
{
theory::TheoryId theoryId = this->getTheoryId();
ProofManager* pm = ProofManager::currentPM();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback