diff options
Diffstat (limited to 'runtime/base/bit_vector.h')
-rw-r--r-- | runtime/base/bit_vector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/base/bit_vector.h b/runtime/base/bit_vector.h index 6ee6b00e07..2a6839619a 100644 --- a/runtime/base/bit_vector.h +++ b/runtime/base/bit_vector.h @@ -148,11 +148,11 @@ class BitVector { bool EnsureSizeAndClear(unsigned int num); - void Dump(std::ostream& os, const char* prefix); - void DumpDot(FILE* file, const char* prefix, bool last_entry = false); + void Dump(std::ostream& os, const char* prefix) const; + void DumpDot(FILE* file, const char* prefix, bool last_entry = false) const; protected: - void DumpHelper(std::ostringstream& buffer, const char* prefix); + void DumpHelper(std::ostringstream& buffer, const char* prefix) const; private: Allocator* const allocator_; |