summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-01-29 16:15:40 +0000
committervladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-01-29 16:15:40 +0000
commit1c4ce7fee11ccb20dd062db9e564fb3a68ae26dc (patch)
tree99f9c54d9f958c874a64dcb13f3994ac399e44c1 /src
parent5e255e0b6affbdc56718d81f0bb5d1b802a1c6c2 (diff)
downloadgtest-1c4ce7fee11ccb20dd062db9e564fb3a68ae26dc.tar.gz
gtest-1c4ce7fee11ccb20dd062db9e564fb3a68ae26dc.tar.bz2
gtest-1c4ce7fee11ccb20dd062db9e564fb3a68ae26dc.tar.xz
Renames some internal functions to avoid name clashes.
git-svn-id: http://googletest.googlecode.com/svn/trunk@535 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'src')
-rw-r--r--src/gtest-printers.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtest-printers.cc b/src/gtest-printers.cc
index c85d582..bfbca9c 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);
}
}