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