summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-09-26 12:30:03 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-09-26 12:30:03 +0000
commit0d07846664594352564865cd0d28abe5ac4bf3ce (patch)
treefc87ee4eb1b85eb0c5aa16ec83a401b5842f3953 /vespalib/src/tests
parentfcd0868ab10343bef4d3925f21c59cb8f577d51c (diff)
Minor code health
Diffstat (limited to 'vespalib/src/tests')
-rw-r--r--vespalib/src/tests/memorydatastore/memorydatastore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/memorydatastore/memorydatastore.cpp b/vespalib/src/tests/memorydatastore/memorydatastore.cpp
index 649bd45a541..7eab32601de 100644
--- a/vespalib/src/tests/memorydatastore/memorydatastore.cpp
+++ b/vespalib/src/tests/memorydatastore/memorydatastore.cpp
@@ -8,7 +8,7 @@ using namespace vespalib;
TEST("testMemoryDataStore")
{
- MemoryDataStore s(alloc::Alloc::alloc(256));
+ MemoryDataStore s(alloc::Alloc::alloc(256), nullptr);
std::vector<MemoryDataStore::Reference> v;
v.push_back(s.push_back("mumbo", 5));
for (size_t i(0); i < 50; i++) {