summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()
{