| 20 | namespace Base |
| 21 | { |
| 22 | void PrintTo(const Quantity& qty, std::ostream* os) |
| 23 | { |
| 24 | *os << qty.toString(QuantityFormat(QuantityFormat::NumberFormat::Fixed)); |
| 25 | } |
| 26 | } // namespace Base |
| 27 | |
| 28 | namespace boost |
nothing calls this directly
no test coverage detected