summaryrefslogtreecommitdiff
path: root/test/test-collection.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-02-07 12:59:47 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-02-07 13:04:01 +0000
commit8c49bfb5fb88e6313378602de5b3b7bb425292d2 (patch)
tree16ea21bcab98c60d8dbe29a18e979c3eb9369c10 /test/test-collection.cpp
parentFactor a lot of maths and stuff into utility (diff)
downloadilt-8c49bfb5fb88e6313378602de5b3b7bb425292d2.tar.bz2
ilt-8c49bfb5fb88e6313378602de5b3b7bb425292d2.tar.xz
ilt-8c49bfb5fb88e6313378602de5b3b7bb425292d2.zip
Add missing virtual destructor in test base class
Diffstat (limited to 'test/test-collection.cpp')
-rw-r--r--test/test-collection.cpp4
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()
{