From: Christopher Dykes Date: Thu, 26 May 2016 17:10:47 +0000 (-0700) Subject: Remove the declaration of TimeseriesHistogram::getBucketIdx X-Git-Tag: 2016.07.26~201 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dfea2768fbbea2adfaf66b7e0fc85eca2049b889;p=folly.git 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 --- 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)