diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-06-14 00:12:14 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-06-14 00:12:14 +0000 |
commit | 896e499e38b34c81430edeb97e837f7f052423ed (patch) | |
tree | 075c5794d0b09b68f5ea00f665681f4a6082f2c0 /libcxx | |
parent | 3e3e2e9f821cdf13494fc1f506e443348b774db7 (diff) | |
download | bcm5719-llvm-896e499e38b34c81430edeb97e837f7f052423ed.tar.gz bcm5719-llvm-896e499e38b34c81430edeb97e837f7f052423ed.zip |
[libcxx] [test] Update msvc_stdlib_force_include.hpp.
MSVC's STL removed _SCL_SECURE_NO_WARNINGS.
MSVC's STL implemented feature-test macros.
llvm-svn: 334675
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/test/support/msvc_stdlib_force_include.hpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libcxx/test/support/msvc_stdlib_force_include.hpp b/libcxx/test/support/msvc_stdlib_force_include.hpp index 232f522e387..f2ec35fd05b 100644 --- a/libcxx/test/support/msvc_stdlib_force_include.hpp +++ b/libcxx/test/support/msvc_stdlib_force_include.hpp @@ -73,9 +73,6 @@ const AssertionDialogAvoider assertion_dialog_avoider{}; // atomic_is_lock_free.pass.cpp needs this VS 2015 Update 2 fix. #define _ENABLE_ATOMIC_ALIGNMENT_FIX - // Silence warnings about raw pointers and other unchecked iterators. - #define _SCL_SECURE_NO_WARNINGS - // Silence warnings about features that are deprecated in C++17. #define _SILENCE_ALL_CXX17_DEPRECATION_WARNINGS #endif // _LIBCXX_IN_DEVCRT @@ -88,12 +85,4 @@ const AssertionDialogAvoider assertion_dialog_avoider{}; #define TEST_STD_VER 14 #endif // _HAS_CXX17 -// Simulate library feature-test macros. -#define __cpp_lib_invoke 201411 -#define __cpp_lib_void_t 201411 - -#if _HAS_CXX17 - #define __cpp_lib_atomic_is_always_lock_free 201603 -#endif // _HAS_CXX17 - #endif // SUPPORT_MSVC_STDLIB_FORCE_INCLUDE_HPP |