| 35 | |
| 36 | template <typename... Args> |
| 37 | string StrCat(const Args&... args) { |
| 38 | std::ostringstream s; |
| 39 | std::vector<int>{((s << args), 0)...}; |
| 40 | return s.str(); |
| 41 | } |
| 42 | |
| 43 | template <typename... Args> |
| 44 | string StrAppend(string* to_append, const Args&... args) { |
no outgoing calls