| 9350 | // Prints a ::string object. |
| 9351 | #if GTEST_HAS_GLOBAL_STRING |
| 9352 | void PrintStringTo(const ::string& s, ostream* os) { |
| 9353 | PrintCharsAsStringTo(s.data(), s.size(), os); |
| 9354 | } |
| 9355 | #endif // GTEST_HAS_GLOBAL_STRING |
| 9356 | |
| 9357 | void PrintStringTo(const ::std::string& s, ostream* os) { |
no test coverage detected