| 11396 | |
| 11397 | template <typename FloatingPoint> |
| 11398 | void write(std::ostream& out, FloatingPoint num) { |
| 11399 | out << std::scientific |
| 11400 | << std::setprecision(std::numeric_limits<FloatingPoint>::max_digits10 - 1) |
| 11401 | << num; |
| 11402 | } |
| 11403 | |
| 11404 | } // end anonymous namespace |
| 11405 |