diff options
Diffstat (limited to 'runtime/base/histogram-inl.h')
-rw-r--r-- | runtime/base/histogram-inl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/base/histogram-inl.h b/runtime/base/histogram-inl.h index ca9a694144..b28eb729d8 100644 --- a/runtime/base/histogram-inl.h +++ b/runtime/base/histogram-inl.h @@ -48,7 +48,8 @@ template <class Value> inline Histogram<Value>::Histogram(const char* name) : kAdjust(0), kInitialBucketCount(0), name_(name), - max_buckets_(0) { + max_buckets_(0), + sample_size_(0) { } template <class Value> |