| 11552 | |
| 11553 | template <typename FloatingPoint> |
| 11554 | void write(std::ostream& out, FloatingPoint num) { |
| 11555 | out << std::scientific |
| 11556 | << std::setprecision(std::numeric_limits<FloatingPoint>::max_digits10 - 1) |
| 11557 | << num; |
| 11558 | } |
| 11559 | |
| 11560 | } // end anonymous namespace |
| 11561 |
no outgoing calls