leveldb: Make WriteBatch::ApproximateSize() const.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=229395810
This commit is contained in:
parent
296de8d5b8
commit
fe4494804f
@ -39,7 +39,7 @@ void WriteBatch::Clear() {
|
|||||||
rep_.resize(kHeader);
|
rep_.resize(kHeader);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t WriteBatch::ApproximateSize() {
|
size_t WriteBatch::ApproximateSize() const {
|
||||||
return rep_.size();
|
return rep_.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ class LEVELDB_EXPORT WriteBatch {
|
|||||||
//
|
//
|
||||||
// This number is tied to implementation details, and may change across
|
// This number is tied to implementation details, and may change across
|
||||||
// releases. It is intended for LevelDB usage metrics.
|
// releases. It is intended for LevelDB usage metrics.
|
||||||
size_t ApproximateSize();
|
size_t ApproximateSize() const;
|
||||||
|
|
||||||
// Copies the operations in "source" to this batch.
|
// Copies the operations in "source" to this batch.
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user