summaryrefslogtreecommitdiff
path: root/test/unit/theory/evaluator_white.h
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-08-23 16:28:21 -0700
committerAina Niemetz <aina.niemetz@gmail.com>2018-08-23 16:28:21 -0700
commit11a34205808098e503f145b2a779078dd509729e (patch)
treebd4a69d62192273d4de237d8c7252448cef41c95 /test/unit/theory/evaluator_white.h
parent860ae582f334bea2835806b0d5044ca1b6e90d76 (diff)
Add missing overrides in unit tests (#2362)
Diffstat (limited to 'test/unit/theory/evaluator_white.h')
-rw-r--r--test/unit/theory/evaluator_white.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/theory/evaluator_white.h b/test/unit/theory/evaluator_white.h
index 4416ee00a..10cb15f6f 100644
--- a/test/unit/theory/evaluator_white.h
+++ b/test/unit/theory/evaluator_white.h
@@ -43,7 +43,7 @@ class TheoryEvaluatorWhite : public CxxTest::TestSuite
public:
TheoryEvaluatorWhite() {}
- void setUp()
+ void setUp() override
{
Options opts;
opts.setOutputLanguage(language::output::LANG_SMTLIB_V2);
@@ -53,7 +53,7 @@ class TheoryEvaluatorWhite : public CxxTest::TestSuite
d_scope = new SmtScope(d_smt);
}
- void tearDown()
+ void tearDown() override
{
delete d_scope;
delete d_smt;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback