Fix merge

This commit is contained in:
Sebastian Messmer 2016-06-23 12:32:28 -07:00
parent e7ac9bec57
commit 9c1a12c063
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ uint64_t InMemoryBlockStore::blockSizeFromPhysicalBlockSize(uint64_t blockSize)
void InMemoryBlockStore::forEachBlock(std::function<void (const Key &)> callback) const {
for (const auto &entry : _blocks) {
callback(Key::FromString(entry.first));
callback(entry.first);
}
}

View File

@ -86,7 +86,7 @@ uint64_t FakeBlockStore::blockSizeFromPhysicalBlockSize(uint64_t blockSize) cons
void FakeBlockStore::forEachBlock(std::function<void (const Key &)> callback) const {
for (const auto &entry : _blocks) {
callback(Key::FromString(entry.first));
callback(entry.first);
}
}