summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-12-08 16:55:08 (GMT)
committerGitHub <noreply@github.com>2017-12-08 16:55:08 (GMT)
commit8f90d46c8cdd743759821a1c987a70e826d58cef (patch)
treee2870f8763c02d884e3a29b3a2284c38413b5d1f /googletest
parent4d50715c2bf9c727573a397cfb02bd551d4aa3b0 (diff)
parent4d1f930af878dbd929f33088c375175896f4e365 (diff)
downloadgoogletest-8f90d46c8cdd743759821a1c987a70e826d58cef.zip
googletest-8f90d46c8cdd743759821a1c987a70e826d58cef.tar.gz
googletest-8f90d46c8cdd743759821a1c987a70e826d58cef.tar.bz2
Merge branch 'master' into fix-argc
Diffstat (limited to 'googletest')
-rw-r--r--googletest/CMakeLists.txt2
-rw-r--r--googletest/include/gtest/internal/gtest-port.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/googletest/CMakeLists.txt b/googletest/CMakeLists.txt
index b9a920b..31fef2c 100644
--- a/googletest/CMakeLists.txt
+++ b/googletest/CMakeLists.txt
@@ -83,6 +83,8 @@ include_directories(
# <= VS 2010 <= 10 <= 1600 Use Google Tests's own tuple.
# VS 2012 11 1700 std::tr1::tuple + _VARIADIC_MAX=10
# VS 2013 12 1800 std::tr1::tuple
+# VS 2015 14 1900 std::tuple
+# VS 2017 15 >= 1910 std::tuple
if (MSVC AND MSVC_VERSION EQUAL 1700)
add_definitions(/D _VARIADIC_MAX=10)
endif()
diff --git a/googletest/include/gtest/internal/gtest-port.h b/googletest/include/gtest/internal/gtest-port.h
index 0c36007..0a0cd1d 100644
--- a/googletest/include/gtest/internal/gtest-port.h
+++ b/googletest/include/gtest/internal/gtest-port.h
@@ -642,6 +642,9 @@ typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION;
# if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR)
// STLport, provided with the Android NDK, has neither <tr1/tuple> or <tuple>.
# define GTEST_HAS_TR1_TUPLE 0
+# elif defined(_MSC_VER) && (_MSC_VER >= 1910)
+// Prevent `warning C4996: 'std::tr1': warning STL4002: The non-Standard std::tr1 namespace and TR1-only machinery are deprecated and will be REMOVED.`
+# define GTEST_HAS_TR1_TUPLE 0
# else
// The user didn't tell us not to do it, so we assume it's OK.
# define GTEST_HAS_TR1_TUPLE 1