| 16 | } |
| 17 | |
| 18 | void ConfigWriter::EmitNumber(std::ostream& fp, double val) |
| 19 | { |
| 20 | fp << std::fixed << val; |
| 21 | } |
| 22 | |
| 23 | void ConfigWriter::EmitString(std::ostream& fp, const String& val) |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected