| 559 | // the curly braces. |
| 560 | template <typename T> |
| 561 | void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) { |
| 562 | UniversalPrint(a[0], os); |
| 563 | for (size_t i = 1; i != count; i++) { |
| 564 | *os << ", "; |
| 565 | UniversalPrint(a[i], os); |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | // Overloads for ::string and ::std::string. |
| 570 | #if GTEST_HAS_GLOBAL_STRING |