summaryrefslogtreecommitdiffstats
path: root/include/__sso_allocator
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2015-02-13 22:15:32 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2015-02-13 22:15:32 +0000
commitf1b30c41adaeaf5e0ab8dc10e26832789bd08097 (patch)
tree51858f5033d64e0a06a3c980b377246c21879540 /include/__sso_allocator
parent846a4a0a6502f8b59ea5c75902672de9cd4e48e7 (diff)
downloadexternal_libcxx-f1b30c41adaeaf5e0ab8dc10e26832789bd08097.tar.gz
external_libcxx-f1b30c41adaeaf5e0ab8dc10e26832789bd08097.tar.bz2
external_libcxx-f1b30c41adaeaf5e0ab8dc10e26832789bd08097.zip
Handle function name conflicts in _LIBCPP_MSVCRT mode
Visual Studio's SAL extension uses a macro named __deallocate. This macro is used pervasively, and gets included through various different ways. This conflicts with the similarly named interfaces in libc++. Introduce a undef header similar to __undef_min_max to handle this. This fixes a number of errors due to the macro replacing the function name. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@229162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/__sso_allocator')
-rw-r--r--include/__sso_allocator2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/__sso_allocator b/include/__sso_allocator
index 645f2ba17..ca3b937c0 100644
--- a/include/__sso_allocator
+++ b/include/__sso_allocator
@@ -15,6 +15,8 @@
#include <type_traits>
#include <new>
+#include <__undef___deallocate>
+
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
#endif