| 135 | #endif |
| 136 | |
| 137 | std::string StringPrintV(const char* format, va_list ap) { |
| 138 | std::string result; |
| 139 | StringAppendV(&result, format, ap); |
| 140 | return result; |
| 141 | } |
| 142 | |
| 143 | const std::string& SStringPrintf(std::string* dst, const char* format, ...) { |
| 144 | va_list ap; |
nothing calls this directly
no test coverage detected