summaryrefslogtreecommitdiff
path: root/src/theory/fp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-02-06 15:55:40 -0800
committerAina Niemetz <aina.niemetz@gmail.com>2018-02-06 15:55:40 -0800
commitb258ebd1cb08252f8cf7f317c08eadbe1fb8e8fe (patch)
treead5a36fc8bad0c95ef7e9538314e81ce683c2cee /src/theory/fp
parentaf20fc43b48217ebc402ad0def388e7a21b49c47 (diff)
Resolving warnings from -Winconsistent-missing-override on clang. (#1563)
Diffstat (limited to 'src/theory/fp')
-rw-r--r--src/theory/fp/theory_fp.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/theory/fp/theory_fp.h b/src/theory/fp/theory_fp.h
index 614cbff46..ca80546b8 100644
--- a/src/theory/fp/theory_fp.h
+++ b/src/theory/fp/theory_fp.h
@@ -38,21 +38,21 @@ class TheoryFp : public Theory {
TheoryFp(context::Context* c, context::UserContext* u, OutputChannel& out,
Valuation valuation, const LogicInfo& logicInfo);
- Node expandDefinition(LogicRequest& lr, Node node);
+ Node expandDefinition(LogicRequest& lr, Node node) override;
- void preRegisterTerm(TNode node);
- void addSharedTerm(TNode node);
+ void preRegisterTerm(TNode node) override;
+ void addSharedTerm(TNode node) override;
- void check(Effort);
+ void check(Effort) override;
- Node getModelValue(TNode var);
+ Node getModelValue(TNode var) override;
bool collectModelInfo(TheoryModel* m) override;
- std::string identify() const { return "THEORY_FP"; }
+ std::string identify() const override { return "THEORY_FP"; }
- void setMasterEqualityEngine(eq::EqualityEngine* eq);
+ void setMasterEqualityEngine(eq::EqualityEngine* eq) override;
- Node explain(TNode n);
+ Node explain(TNode n) override;
protected:
/** Equality engine */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback