diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-07 12:59:47 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-07 13:04:01 +0000 |
commit | 8c49bfb5fb88e6313378602de5b3b7bb425292d2 (patch) | |
tree | 16ea21bcab98c60d8dbe29a18e979c3eb9369c10 /test | |
parent | Factor a lot of maths and stuff into utility (diff) | |
download | ilt-8c49bfb5fb88e6313378602de5b3b7bb425292d2.tar.bz2 ilt-8c49bfb5fb88e6313378602de5b3b7bb425292d2.tar.xz ilt-8c49bfb5fb88e6313378602de5b3b7bb425292d2.zip |
Add missing virtual destructor in test base class
Diffstat (limited to 'test')
-rw-r--r-- | test/test-collection.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test-collection.cpp b/test/test-collection.cpp index 0e05526..3bccb78 100644 --- a/test/test-collection.cpp +++ b/test/test-collection.cpp @@ -4,10 +4,14 @@ #include <collection.hpp> #include <memory> +#include <special_members.hpp> #include <vector> class Base { public: + Base() = default; + virtual ~Base() = default; + DEFAULT_MOVE_COPY(Base); virtual bool add() { |