From dfea2768fbbea2adfaf66b7e0fc85eca2049b889 Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Thu, 26 May 2016 10:10:47 -0700 Subject: [PATCH] Remove the declaration of TimeseriesHistogram::getBucketIdx Summary: Because, as MSVC rightly tells us, it's not actually defined anywhere. Reviewed By: yfeldblum Differential Revision: D3347654 fbshipit-source-id: 2162bc745136ee0129caa4de78f38e1361083cd1 --- folly/stats/TimeseriesHistogram.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/folly/stats/TimeseriesHistogram.h b/folly/stats/TimeseriesHistogram.h index 4e7056a5..9aead54e 100644 --- a/folly/stats/TimeseriesHistogram.h +++ b/folly/stats/TimeseriesHistogram.h @@ -96,9 +96,6 @@ class TimeseriesHistogram { /* Return the number of buckets */ int getNumBuckets() const { return buckets_.getNumBuckets(); } - /* Return the bucket index into which the given value would fall. */ - int getBucketIdx(const ValueType& value) const; - /* * Return the threshold of the bucket for the given index in range * [0..numBuckets). The bucket will have range [thresh, thresh + bucketSize) -- 2.34.1