diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gtest-printers.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtest-printers.cc b/src/gtest-printers.cc index c85d5822..bfbca9c8 100644 --- a/src/gtest-printers.cc +++ b/src/gtest-printers.cc @@ -308,7 +308,7 @@ void PrintTo(const char* s, ostream* os) { if (s == NULL) { *os << "NULL"; } else { - *os << implicit_cast<const void*>(s) << " pointing to "; + *os << ImplicitCast_<const void*>(s) << " pointing to "; PrintCharsAsStringTo(s, strlen(s), os); } } @@ -325,7 +325,7 @@ void PrintTo(const wchar_t* s, ostream* os) { if (s == NULL) { *os << "NULL"; } else { - *os << implicit_cast<const void*>(s) << " pointing to "; + *os << ImplicitCast_<const void*>(s) << " pointing to "; PrintWideCharsAsStringTo(s, wcslen(s), os); } } |