[libcxx] [test] Update msvc_stdlib_force_include.hpp.

MSVC's STL is replacing _HAS_FUNCTION_ASSIGN with _HAS_FUNCTION_ALLOCATOR_SUPPORT,
and is adding _HAS_UNEXPECTED.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@308535 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Stephan T. Lavavej
2017-07-19 22:02:33 +00:00
parent 3c00cff599
commit d08ba82b09

View File

@@ -71,8 +71,9 @@ const AssertionDialogAvoider assertion_dialog_avoider{};
// Enable features that /std:c++latest removes by default. // Enable features that /std:c++latest removes by default.
#define _HAS_AUTO_PTR_ETC 1 #define _HAS_AUTO_PTR_ETC 1
#define _HAS_FUNCTION_ASSIGN 1 #define _HAS_FUNCTION_ALLOCATOR_SUPPORT 1
#define _HAS_OLD_IOSTREAMS_MEMBERS 1 #define _HAS_OLD_IOSTREAMS_MEMBERS 1
#define _HAS_UNEXPECTED 1
// Silence warnings about raw pointers and other unchecked iterators. // Silence warnings about raw pointers and other unchecked iterators.
#define _SCL_SECURE_NO_WARNINGS #define _SCL_SECURE_NO_WARNINGS