diff --git a/test/dummy_test_allocator.hpp b/test/dummy_test_allocator.hpp index 726554d..5e4d751 100644 --- a/test/dummy_test_allocator.hpp +++ b/test/dummy_test_allocator.hpp @@ -250,6 +250,13 @@ class small_size_type_allocator typedef unsigned short size_type; typedef short difference_type; + small_size_type_allocator() + {} + + template + small_size_type_allocator(const small_size_type_allocator&) + {} + pointer allocate(size_type count) { return static_cast(::operator new(count * sizeof(value_type))); }