Remove a VS 2012 workaround, we require 2015 now.

llvm-svn: 285096
This commit is contained in:
Nico Weber 2016-10-25 18:48:43 +00:00
parent 8f9235dd7f
commit 0519a53d7d
1 changed files with 0 additions and 6 deletions

View File

@ -269,12 +269,6 @@ if(MSVC)
# gtest use a lot of stuff marked as deprecated on Windows.
list(APPEND COMPILER_RT_GTEST_CFLAGS -Wno-deprecated-declarations)
# Visual Studio 2012 only supports up to 8 template parameters in
# std::tr1::tuple by default, but gtest requires 10
if(MSVC_VERSION EQUAL 1700)
list(APPEND COMPILER_RT_GTEST_CFLAGS -D_VARIADIC_MAX=10)
endif()
endif()
# Link objects into a single executable with COMPILER_RT_TEST_COMPILER,