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() {