| 37 | |
| 38 | template <class... Args> |
| 39 | inline std::string StrCat(Args&&... args) { |
| 40 | std::ostringstream ss; |
| 41 | StrCatImp(ss, std::forward<Args>(args)...); |
| 42 | return ss.str(); |
| 43 | } |
| 44 | |
| 45 | BENCHMARK_EXPORT |
| 46 | std::vector<std::string> StrSplit(const std::string& str, char delim); |