diff --git a/implementations/onblocks/BlobStoreOnBlocks.cpp b/implementations/onblocks/BlobStoreOnBlocks.cpp index aaa55fbb..b3465bf8 100644 --- a/implementations/onblocks/BlobStoreOnBlocks.cpp +++ b/implementations/onblocks/BlobStoreOnBlocks.cpp @@ -1,10 +1,9 @@ +#include #include "datanodestore/DataLeafNode.h" #include "datanodestore/DataNodeStore.h" #include "datatreestore/DataTreeStore.h" #include "datatreestore/DataTree.h" #include "BlobStoreOnBlocks.h" -#include - #include "BlobOnBlocks.h" #include @@ -12,7 +11,7 @@ using std::unique_ptr; using std::make_unique; using blockstore::BlockStore; -using blockstore::synchronized::SynchronizedBlockStore; +using blockstore::caching::CachingBlockStore; using blockstore::Key; using cpputils::dynamic_pointer_move; @@ -23,7 +22,7 @@ using datanodestore::DataNodeStore; using datatreestore::DataTreeStore; BlobStoreOnBlocks::BlobStoreOnBlocks(unique_ptr blockStore, uint32_t blocksizeBytes) -: _dataTreeStore(make_unique(make_unique(make_unique(std::move(blockStore)), blocksizeBytes))) { +: _dataTreeStore(make_unique(make_unique(make_unique(std::move(blockStore)), blocksizeBytes))) { } BlobStoreOnBlocks::~BlobStoreOnBlocks() {