| 305 | } |
| 306 | |
| 307 | static string AddBoolString(bool b, const string &str) |
| 308 | { |
| 309 | ostringstream stream; |
| 310 | stream << (b ? "true" : "false"); |
| 311 | return stream.str() + str; |
| 312 | } |
| 313 | |
| 314 | static char *StringCharAt(unsigned int i, string &str) |
| 315 | { |
nothing calls this directly
no outgoing calls
no test coverage detected