From 3b23b1d8c66315c5c08acf12fb80d492e5727e45 Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Fri, 1 Sep 2017 10:58:04 -0700 Subject: [PATCH] fix HistogramWindowingImpl copy-{assignment,constructor} Summary: their arguments had a typo. Closes https://github.com/facebook/rocksdb/pull/2821 Differential Revision: D5752408 Pulled By: ajkr fbshipit-source-id: f2d84489c0c615b12a790f04c42d35cc0dccb02d --- monitoring/histogram_windowing.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monitoring/histogram_windowing.h b/monitoring/histogram_windowing.h index 2a6d0dd15..6532aa248 100644 --- a/monitoring/histogram_windowing.h +++ b/monitoring/histogram_windowing.h @@ -22,8 +22,8 @@ public: uint64_t micros_per_window, uint64_t min_num_per_window); - HistogramWindowingImpl(const HistogramImpl&) = delete; - HistogramWindowingImpl& operator=(const HistogramImpl&) = delete; + HistogramWindowingImpl(const HistogramWindowingImpl&) = delete; + HistogramWindowingImpl& operator=(const HistogramWindowingImpl&) = delete; ~HistogramWindowingImpl(); @@ -77,4 +77,4 @@ private: uint64_t min_num_per_window_ = 0; }; -} // namespace rocksdb \ No newline at end of file +} // namespace rocksdb