| 298 | } |
| 299 | |
| 300 | static string AddStringBool(const string &str, bool b) |
| 301 | { |
| 302 | ostringstream stream; |
| 303 | stream << (b ? "true" : "false"); |
| 304 | return str + stream.str(); |
| 305 | } |
| 306 | |
| 307 | static string AddBoolString(bool b, const string &str) |
| 308 | { |
nothing calls this directly
no outgoing calls
no test coverage detected