summaryrefslogtreecommitdiff
path: root/test/support
diff options
context:
space:
mode:
authorStephan T. Lavavej <stl@exchange.microsoft.com>2017-07-19 22:02:33 +0000
committerStephan T. Lavavej <stl@exchange.microsoft.com>2017-07-19 22:02:33 +0000
commitd08ba82b09f62a34c5f0b22a4acdba607df8313e (patch)
tree271871fba7ac52c4ca5218e4846be24589ec11cd /test/support
parent3c00cff59959d55d0040faf7a6498cb7eb2dcce7 (diff)
[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
Diffstat (limited to 'test/support')
-rw-r--r--test/support/msvc_stdlib_force_include.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/support/msvc_stdlib_force_include.hpp b/test/support/msvc_stdlib_force_include.hpp
index 954cf513e..cd321cdb9 100644
--- a/test/support/msvc_stdlib_force_include.hpp
+++ b/test/support/msvc_stdlib_force_include.hpp
@@ -70,9 +70,10 @@ const AssertionDialogAvoider assertion_dialog_avoider{};
#define _ENABLE_ATOMIC_ALIGNMENT_FIX
// Enable features that /std:c++latest removes by default.
- #define _HAS_AUTO_PTR_ETC 1
- #define _HAS_FUNCTION_ASSIGN 1
- #define _HAS_OLD_IOSTREAMS_MEMBERS 1
+ #define _HAS_AUTO_PTR_ETC 1
+ #define _HAS_FUNCTION_ALLOCATOR_SUPPORT 1
+ #define _HAS_OLD_IOSTREAMS_MEMBERS 1
+ #define _HAS_UNEXPECTED 1
// Silence warnings about raw pointers and other unchecked iterators.
#define _SCL_SECURE_NO_WARNINGS