| 476 | } |
| 477 | |
| 478 | void YamlSaveHelper::SaveBool(const char* key, bool value) |
| 479 | { |
| 480 | Save("%s: %s\n", key, value ? "true" : "false"); |
| 481 | } |
| 482 | |
| 483 | void YamlSaveHelper::SaveString(const char* key, const char* value) |
| 484 | { |
no outgoing calls
no test coverage detected