summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-02-10 13:50:05 +0100
committerTor Egge <Tor.Egge@online.no>2022-02-10 13:50:05 +0100
commite66bdcf264ca817d17173c9d4748ff86b8e0b91f (patch)
tree2dd8d3950b227e6b0c56a273cfe596765863eb75 /vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp
parentfed60ae90b4e230129b4e9e6b72dd125d354e6c0 (diff)
Add memory allocator to unique store allocator
Diffstat (limited to 'vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp')
-rw-r--r--vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp b/vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp
index 417b92af9ac..599cb209e6c 100644
--- a/vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp
+++ b/vespalib/src/tests/datastore/fixed_size_hash_map/fixed_size_hash_map_test.cpp
@@ -68,7 +68,7 @@ struct DataStoreFixedSizeHashTest : public ::testing::Test
DataStoreFixedSizeHashTest::DataStoreFixedSizeHashTest()
: _generation_handler(),
_generation_holder(),
- _allocator(),
+ _allocator({}),
_store(_allocator.get_data_store()),
_comp(std::make_unique<MyCompare>(_store)),
_hash_map(),