From ef37aa407478b65e3042d5686ebcc95cbf1527b3 Mon Sep 17 00:00:00 2001 From: "zhanyong.wan" Date: Thu, 7 Jan 2010 20:53:15 +0000 Subject: Fixes a typo in gtest-port.h, by Manuel Klimek. --- include/gtest/internal/gtest-port.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/gtest') diff --git a/include/gtest/internal/gtest-port.h b/include/gtest/internal/gtest-port.h index c3940b1b..60ca49ee 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 -- cgit v1.2.3