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

[MeL/MQ] Explicitly use std namespace.

parent d04586be
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,8 @@ BaseLib::Histogram<double> ElementQualityMetric::getHistogram(
if (n_bins == 0)
{
n_bins = static_cast<std::size_t>(
1 + 3.3 * log(static_cast<float>((_mesh.getNumberOfElements()))));
1 +
3.3 * std::log(static_cast<float>((_mesh.getNumberOfElements()))));
}
return BaseLib::Histogram<double>(getElementQuality(), n_bins, true);
......
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