| 9636 | // the curly braces. |
| 9637 | template <typename T> |
| 9638 | void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) { |
| 9639 | UniversalPrint(a[0], os); |
| 9640 | for (size_t i = 1; i != count; i++) { |
| 9641 | *os << ", "; |
| 9642 | UniversalPrint(a[i], os); |
| 9643 | } |
| 9644 | } |
| 9645 | |
| 9646 | // Overloads for ::string and ::std::string. |
| 9647 | #if GTEST_HAS_GLOBAL_STRING |
no test coverage detected