summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-01-07 20:53:15 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-01-07 20:53:15 +0000
commit71ab4d054d79146c16d9fae3d6bf9cdaa5ed5b67 (patch)
treef6f4db80634e95a4dcbacc0ed744c7479b945989
parentdfd39e29ee3a37a886c49a17a861e59e802567c8 (diff)
downloadgtest-71ab4d054d79146c16d9fae3d6bf9cdaa5ed5b67.tar.gz
gtest-71ab4d054d79146c16d9fae3d6bf9cdaa5ed5b67.tar.bz2
gtest-71ab4d054d79146c16d9fae3d6bf9cdaa5ed5b67.tar.xz
Fixes a typo in gtest-port.h, by Manuel Klimek.
git-svn-id: http://googletest.googlecode.com/svn/trunk@364 861a406c-534a-0410-8894-cb66d6ee9925
-rw-r--r--include/gtest/internal/gtest-port.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gtest/internal/gtest-port.h b/include/gtest/internal/gtest-port.h
index c3940b1..60ca49e 100644
--- a/include/gtest/internal/gtest-port.h
+++ b/include/gtest/internal/gtest-port.h
@@ -358,7 +358,7 @@
// 2010 are the only mainstream compilers that come with a TR1 tuple
// implementation. MSVC 2008 (9.0) provides TR1 tuple in a 323 MB
// Feature Pack download, which we cannot assume the user has.
-#if (defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000)) || _MSV_VER >= 1600
+#if (defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000)) || _MSC_VER >= 1600
#define GTEST_USE_OWN_TR1_TUPLE 0
#else
#define GTEST_USE_OWN_TR1_TUPLE 1