make statistics ToString function empty instead of pure virtual

Summary: as title

Test Plan: make release

Reviewers: yhchiang, sdong

Reviewed By: sdong

Subscribers: leveldb

Differential Revision: https://reviews.facebook.net/D21549
This commit is contained in:
Lei Jin 2014-08-11 15:04:41 -07:00
parent 18efdba8d5
commit 37c6740c38

View File

@ -265,7 +265,10 @@ class Statistics {
virtual void measureTime(uint32_t histogramType, uint64_t time) = 0;
// String representation of the statistic object.
virtual std::string ToString() const = 0;
virtual std::string ToString() const {
// Do nothing by default
return std::string("ToString(): not implemented");
}
// Override this function to disable particular histogram collection
virtual bool HistEnabledForType(uint32_t type) const {