Update fdbclient/VersionedMap.h

Indentation Fix

Co-Authored-By: Steve Atherton <stevea@apple.com>
This commit is contained in:
negoyal 2019-09-26 21:57:11 -07:00 committed by GitHub
parent efbce26c78
commit 381f3220b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -515,7 +515,7 @@ public:
Version getLatestVersion() const { return latestVersion; }
Version getOldestVersion() const { return oldestVersion; }
//front element should be the oldest version in the deque, hence the next oldest should be at index 1
//front element should be the oldest version in the deque, hence the next oldest should be at index 1
Version getNextOldestVersion() const { return roots[1]->first; }
void forgetVersionsBefore(Version newOldestVersion) {