summaryrefslogtreecommitdiff
path: root/test/unit/main
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/main
parent860ae582f334bea2835806b0d5044ca1b6e90d76 (diff)
Add missing overrides in unit tests (#2362)
Diffstat (limited to 'test/unit/main')
-rw-r--r--test/unit/main/interactive_shell_black.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/unit/main/interactive_shell_black.h b/test/unit/main/interactive_shell_black.h
index 44b3660c9..cf76bb05a 100644
--- a/test/unit/main/interactive_shell_black.h
+++ b/test/unit/main/interactive_shell_black.h
@@ -35,7 +35,7 @@ using namespace std;
class InteractiveShellBlack : public CxxTest::TestSuite
{
public:
- void setUp()
+ void setUp() override
{
d_sin = new stringstream;
d_sout = new stringstream;
@@ -45,7 +45,8 @@ class InteractiveShellBlack : public CxxTest::TestSuite
d_solver.reset(new api::Solver(&d_options));
}
- void tearDown() {
+ void tearDown() override
+ {
delete d_sin;
delete d_sout;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback