We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 757e285 commit 590f703Copy full SHA for 590f703
mfront/src/MaterialPropertyParametersHandler.cxx
@@ -58,7 +58,10 @@ namespace mfront {
58
p->name + "'");
59
const auto pv =
60
p->getAttribute<double>(VariableDescription::defaultValue);
61
+ const auto prec = os.precision();
62
+ os.precision(14);
63
os << p->name << "(" << pv << ")";
64
+ os.precision(prec);
65
if (++p != mpd.parameters.end()) {
66
os << ",\n";
67
}
0 commit comments