| 10186 | // Prints a ::string object. |
| 10187 | #if GTEST_HAS_GLOBAL_STRING |
| 10188 | void PrintStringTo(const ::string& s, ostream* os) { |
| 10189 | PrintCharsAsStringTo(s.data(), s.size(), os); |
| 10190 | } |
| 10191 | #endif // GTEST_HAS_GLOBAL_STRING |
| 10192 | |
| 10193 | void PrintStringTo(const ::std::string& s, ostream* os) { |
no test coverage detected