1 #ifndef BENCHMARK_STRING_UTIL_H_
2 #define BENCHMARK_STRING_UTIL_H_
15 #if defined(__MINGW32__)
17 #elif defined(__GNUC__)
27 template <
class First,
class... Rest>
28 inline std::ostream&
StrCatImp(std::ostream&
out, First&& f, Rest&&... rest) {
29 out << std::forward<First>(f);
33 template <
class...
Args>
35 std::ostringstream ss;
42 #ifdef BENCHMARK_STL_ANDROID_GNUSTL
61 #endif // BENCHMARK_STRING_UTIL_H_