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
main
Andrew Kryczka 7 years ago committed by Facebook Github Bot
parent 3b9a000c15
commit 3b23b1d8c6
  1. 6
      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
} // namespace rocksdb

Loading…
Cancel
Save