summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/dynamic_rewrite.cpp
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-06-20 20:28:50 -0700
committerGitHub <noreply@github.com>2018-06-20 20:28:50 -0700
commit5f997ea7363bd29ae53b57051ebac8d1da8f9439 (patch)
treeddcae46a71db87da31ca6d83e3dd3ee9098ace22 /src/theory/quantifiers/dynamic_rewrite.cpp
parentdd0bd217e222b2db5fac9aedee3aacee8a28d0b1 (diff)
Fix warnings and enable -Wnon-virtual-dtor warning (#2079)
This commit fixes warnings for an unused variable, comparison of two different types and add virtual destructors to classes that were previously missing them. It also enables the -Wnon-virtual-dtor warning which warns about any class definition with virtual methods that does not have a virtual destructor (except if the destructor is protected). This flag is supported by both clang and GCC and not enabled by default.
Diffstat (limited to 'src/theory/quantifiers/dynamic_rewrite.cpp')
-rw-r--r--src/theory/quantifiers/dynamic_rewrite.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/theory/quantifiers/dynamic_rewrite.cpp b/src/theory/quantifiers/dynamic_rewrite.cpp
index 00e527aba..27f36cbf3 100644
--- a/src/theory/quantifiers/dynamic_rewrite.cpp
+++ b/src/theory/quantifiers/dynamic_rewrite.cpp
@@ -24,8 +24,7 @@ namespace theory {
namespace quantifiers {
DynamicRewriter::DynamicRewriter(const std::string& name, QuantifiersEngine* qe)
- : d_qe(qe),
- d_equalityEngine(qe->getUserContext(), "DynamicRewriter::" + name, true),
+ : d_equalityEngine(qe->getUserContext(), "DynamicRewriter::" + name, true),
d_rewrites(qe->getUserContext())
{
d_equalityEngine.addFunctionKind(kind::APPLY_UF);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback