提交 52e8a2c4 编写于 作者: L linshuliang 提交者: wuzewu

Fix the bug caused by Histogram. (#553)

The Histogram Constructor have allocated memory for storing
the variable vector<int> frequency, but not release after then.
I have created a destructor function to free the memory.
上级 d2c63ee5
......@@ -46,6 +46,8 @@ struct HistogramRecord {
frequency(frequency),
span_(float(right - left) / frequency.size()) {}
~HistogramRecord() { frequency.clear(); }
Instance instance(int i) const {
CHECK_LT(i, frequency.size());
Instance res;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册