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
This commit is contained in:
Andrew Kryczka 2017-09-01 10:58:04 -07:00 committed by Facebook Github Bot
parent 3b9a000c15
commit 3b23b1d8c6

View File

@ -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