Skip to content

Commit

Permalink
fix missing decimals in error histogram limits
Browse files Browse the repository at this point in the history
  • Loading branch information
Ylannl committed Sep 29, 2020
1 parent 563613b commit 796d812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_pcmesh_quality.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace geoflow::nodes::stepedge {
}
}
std::stringstream json;
json << "{\"upper_limits\":[" << std::setprecision(1);
json << "{\"upper_limits\":[" << std::setprecision(2);
auto sep = "";
for (auto& l : limits) {
json << sep << l;
Expand Down

0 comments on commit 796d812

Please sign in to comment.