提交 3b23b1d8 编写于 作者: A Andrew Kryczka 提交者: Facebook Github Bot

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
上级 3b9a000c
......@@ -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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册