summaryrefslogtreecommitdiffstats
path: root/staging_vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-10-16 20:15:08 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-10-16 20:15:08 +0000
commitefdb649baec149d67638edda831ed85c48ef9e92 (patch)
tree8bcf25b641344eaaaf146842cab3a5547f3ab4e8 /staging_vespalib
parent3dc92c36aa6f58a2ce2f57089501364dab6a44bc (diff)
Follow api change
Diffstat (limited to 'staging_vespalib')
-rw-r--r--staging_vespalib/src/tests/memorydatastore/memorydatastore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/staging_vespalib/src/tests/memorydatastore/memorydatastore.cpp b/staging_vespalib/src/tests/memorydatastore/memorydatastore.cpp
index 7c985afa6a5..34bf061bb32 100644
--- a/staging_vespalib/src/tests/memorydatastore/memorydatastore.cpp
+++ b/staging_vespalib/src/tests/memorydatastore/memorydatastore.cpp
@@ -21,7 +21,7 @@ public:
void
MemoryDataStoreTest::testMemoryDataStore()
{
- MemoryDataStore s(Alloc::alloc(256));
+ MemoryDataStore s(alloc::Alloc::alloc(256));
std::vector<MemoryDataStore::Reference> v;
v.push_back(s.push_back("mumbo", 5));
for (size_t i(0); i < 50; i++) {