leveldb: Make WriteBatch::ApproximateSize() const.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=229395810
This commit is contained in:
costan 2019-01-15 10:29:55 -08:00 committed by Victor Costan
parent 296de8d5b8
commit fe4494804f
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ void WriteBatch::Clear() {
rep_.resize(kHeader);
}
size_t WriteBatch::ApproximateSize() {
size_t WriteBatch::ApproximateSize() const {
return rep_.size();
}

View File

@ -52,7 +52,7 @@ class LEVELDB_EXPORT WriteBatch {
//
// This number is tied to implementation details, and may change across
// releases. It is intended for LevelDB usage metrics.
size_t ApproximateSize();
size_t ApproximateSize() const;
// Copies the operations in "source" to this batch.
//