Fix xml double value is rounded #1533

This commit is contained in:
blocovin
2021-06-21 21:37:53 +02:00
committed by Thomas Krijnen
parent e863015e85
commit 8f154c753c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -944,7 +944,7 @@ int main(int argc, char** argv) {
}
std::stringstream msg;
msg << std::setprecision (17) << "Using model offset (" << offset[0] << "," << offset[1] << "," << offset[2] << ")";
msg << std::setprecision (std::numeric_limits< double >::max_digits10) << "Using model offset (" << offset[0] << "," << offset[1] << "," << offset[2] << ")";
Logger::Notice(msg.str());
}