| 35 | } |
| 36 | |
| 37 | void PrintFormatter::print(std::ostream& os, bool val) { |
| 38 | if (capitalize_bool) { |
| 39 | os << (val ? "True" : "False"); |
| 40 | } else { |
| 41 | os << val; |
| 42 | } |
| 43 | } |
| 44 | inline void PrintFormatter::print(std::ostream& os, int16_t val) { |
| 45 | os << val; |
| 46 | } |
no test coverage detected