about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--010vm.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index a3dd3bc5..e03c9128 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -677,7 +677,8 @@ ostream& operator<<(ostream& os, no_scientific x) {
     return os;
   }
   ostringstream tmp;
-  tmp.precision(308);  // for 64-bit numbers
+  // more accurate, but too slow
+//?   tmp.precision(308);  // for 64-bit numbers
   tmp << std::fixed << x.x;
   os << trim_floating_point(tmp.str());
   return os;