From 84d1c55bc14cba06a4655c6d7c322436419c9787 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Thu, 16 Apr 2015 14:10:58 +0200 Subject: [PATCH] Adapt to new blockstore --- implementations/onblocks/BlobStoreOnBlocks.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/implementations/onblocks/BlobStoreOnBlocks.cpp b/implementations/onblocks/BlobStoreOnBlocks.cpp index da536c1f..2fa705cd 100644 --- a/implementations/onblocks/BlobStoreOnBlocks.cpp +++ b/implementations/onblocks/BlobStoreOnBlocks.cpp @@ -1,4 +1,4 @@ -#include +#include #include "datanodestore/DataLeafNode.h" #include "datanodestore/DataNodeStore.h" #include "datatreestore/DataTreeStore.h" @@ -13,7 +13,7 @@ using std::unique_ptr; using std::make_unique; using blockstore::BlockStore; -using blockstore::caching::CachingBlockStore; +using blockstore::parallelaccess::ParallelAccessBlockStore; using blockstore::Key; using cpputils::dynamic_pointer_move; @@ -25,7 +25,7 @@ using datatreestore::DataTreeStore; using cachingdatatreestore::CachingDataTreeStore; BlobStoreOnBlocks::BlobStoreOnBlocks(unique_ptr blockStore, uint32_t blocksizeBytes) -: _dataTreeStore(make_unique(make_unique(make_unique(make_unique(std::move(blockStore)), blocksizeBytes)))) { +: _dataTreeStore(make_unique(make_unique(make_unique(make_unique(std::move(blockStore)), blocksizeBytes)))) { } BlobStoreOnBlocks::~BlobStoreOnBlocks() {