| 60 | // semantics. One departure is that %s can be driven by a std::string or string. |
| 61 | template <typename... Args> |
| 62 | inline string StringF(const char* fmt, Args&&... args) { |
| 63 | string result; |
| 64 | AppendFHelper(&result, fmt, IdentityOrConvertStringToRaw(args)...); |
| 65 | return result; |
| 66 | } |
| 67 | |
| 68 | } // namespace port |
| 69 | } // namespace toco |
no test coverage detected