Fix compiler error

This commit is contained in:
Sebastian Messmer 2016-03-09 00:13:18 +01:00
parent fdd9c980bd
commit 08c1d206af
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,10 @@ private:
DISALLOW_COPY_AND_ASSIGN(ParallelAccessDataTreeStore);
};
inline uint64_t ParallelAccessDataTreeStore::blocksizeBytes() const {
return _dataTreeStore->blocksizeBytes();
}
inline uint64_t ParallelAccessDataTreeStore::numNodes() const {
return _dataTreeStore->numNodes();
}