summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-02-07 19:06:11 -0800
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-02-07 21:06:11 -0600
commit010666a966a58d9beaf8a0f7233d7f73eb0bc79b (patch)
tree2f18018d9aaf00e498d0135a7c43f735cefef4c4 /src/theory/quantifiers
parenta21b519006224b0d81cd5e36104cad6f43d4720c (diff)
Fixing more inconsistent usages of override. (#1575)
Diffstat (limited to 'src/theory/quantifiers')
-rw-r--r--src/theory/quantifiers/ho_trigger.h2
-rw-r--r--src/theory/quantifiers/quant_conflict_find.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/ho_trigger.h b/src/theory/quantifiers/ho_trigger.h
index 4db3a660f..87f7fe07f 100644
--- a/src/theory/quantifiers/ho_trigger.h
+++ b/src/theory/quantifiers/ho_trigger.h
@@ -167,7 +167,7 @@ class HigherOrderTrigger : public Trigger
* matching ground terms to function applications with variable heads.
* See examples (EX1)-(EX3) above.
*/
- virtual bool sendInstantiation(InstMatch& m);
+ bool sendInstantiation(InstMatch& m) override;
private:
//-------------------- current information about the match
diff --git a/src/theory/quantifiers/quant_conflict_find.cpp b/src/theory/quantifiers/quant_conflict_find.cpp
index 95f8e3093..23e2ad721 100644
--- a/src/theory/quantifiers/quant_conflict_find.cpp
+++ b/src/theory/quantifiers/quant_conflict_find.cpp
@@ -34,7 +34,7 @@ namespace CVC4 {
namespace theory {
namespace quantifiers {
-QuantInfo::QuantInfo() : d_unassigned_nvar(0), d_mg(NULL), d_una_index(0) {}
+QuantInfo::QuantInfo() : d_unassigned_nvar(0), d_una_index(0), d_mg(nullptr) {}
QuantInfo::~QuantInfo() {
delete d_mg;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback