mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
Fix xml double value is rounded #1533
This commit is contained in:
@@ -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());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user