Skip to content
Snippets Groups Projects
Commit 944ea868 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

clang-format

parent ab7d8779
No related branches found
No related tags found
1 merge request!1616IAxis::operator<< now only using m_bins
Pipeline #98169 passed
......@@ -132,7 +132,8 @@ std::ostream& operator<<(std::ostream& ostr, const IAxis& ax)
}
}
if (isDiscreteAxis) {
ostr << "DiscreteAxis(\"" << ax.axisName() << "\", " << ", [" << std::setprecision(17);
ostr << "DiscreteAxis(\"" << ax.axisName() << "\", "
<< ", [" << std::setprecision(17);
for (double v : ax.binCenters())
ostr << v << ",";
ostr << "])";
......
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