| 8566 | // the curly braces. |
| 8567 | template <typename T> |
| 8568 | void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) { |
| 8569 | UniversalPrint(a[0], os); |
| 8570 | for (size_t i = 1; i != count; i++) { |
| 8571 | *os << ", "; |
| 8572 | UniversalPrint(a[i], os); |
| 8573 | } |
| 8574 | } |
| 8575 | |
| 8576 | // Overloads for ::std::string. |
| 8577 | GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os); |