| 8875 | // Prints a ::string object. |
| 8876 | #if GTEST_HAS_GLOBAL_STRING |
| 8877 | void PrintStringTo(const ::string& s, ostream* os) { |
| 8878 | PrintCharsAsStringTo(s.data(), s.size(), os); |
| 8879 | } |
| 8880 | #endif // GTEST_HAS_GLOBAL_STRING |
| 8881 | |
| 8882 | void PrintStringTo(const ::std::string& s, ostream* os) { |
no test coverage detected