Skip to content
Snippets Groups Projects
Commit db04e1da authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Explicit construction of Histogram.

parent 6590b350
No related branches found
No related tags found
No related merge requests found
...@@ -65,8 +65,7 @@ public: ...@@ -65,8 +65,7 @@ public:
if (_quality_tester) if (_quality_tester)
return _quality_tester->getHistogram(static_cast<std::size_t>(n_bins)); return _quality_tester->getHistogram(static_cast<std::size_t>(n_bins));
std::vector<double> empty_quality_vec(0); return BaseLib::Histogram<double>{{}};
return empty_quality_vec;
} }
/// Writes a histogram of the quality vector to a specified file. /// Writes a histogram of the quality vector to a specified file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment