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