summaryrefslogtreecommitdiff
path: root/include/gtest/gtest-printers.h
diff options
context:
space:
mode:
authorvladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-06-13 19:00:37 +0000
committervladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-06-13 19:00:37 +0000
commit95a77adfeb8f97d2a61956e2eda12afe7371f1db (patch)
tree800a32dcfa5f87dcd0d6735b57d1c72e14305d5f /include/gtest/gtest-printers.h
parent86554039f1bc9e84c9e4e22a5af5d2b396fef5a0 (diff)
downloadgoogletest-95a77adfeb8f97d2a61956e2eda12afe7371f1db.tar.gz
Fixes broken build on VC++ 7.1.
git-svn-id: http://googletest.googlecode.com/svn/trunk@584 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'include/gtest/gtest-printers.h')
-rw-r--r--include/gtest/gtest-printers.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/gtest/gtest-printers.h b/include/gtest/gtest-printers.h
index 9cbab3f..55d44fa 100644
--- a/include/gtest/gtest-printers.h
+++ b/include/gtest/gtest-printers.h
@@ -694,7 +694,10 @@ inline void UniversalTersePrint(char* str, ::std::ostream* os) {
// NUL-terminated string.
template <typename T>
void UniversalPrint(const T& value, ::std::ostream* os) {
- UniversalPrinter<T>::Print(value, os);
+ // A workarond for the bug in VC++ 7.1 that prevents us from instantiating
+ // UniversalPrinter with T directly.
+ typedef T T1;
+ UniversalPrinter<T1>::Print(value, os);
}
#if GTEST_HAS_TR1_TUPLE