mirror of
https://github.com/darlinghq/darling-libcxx.git
synced 2024-12-03 09:30:49 +00:00
ab008f7cb1
From r229162: Visual Studio's SAL extension uses a macro named __deallocate. This macro is used pervasively Using -Werror when building for Windows can force the use of -Wno-#warnings specifically because of this __deallocate #warning. Instead of forcing builds to disable all #warnings, this option allows libc++ to be built without this particular warning, while leaving other #warnings enabled. Patch by Dave Lee! git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@275172 91177308-0d34-0410-b5e6-96231b3b80d8
34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifdef min
|
|
#if !defined(_LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS)
|
|
#if defined(_MSC_VER) && ! defined(__clang__)
|
|
_LIBCPP_WARNING("macro min is incompatible with C++. Try #define NOMINMAX "
|
|
"before any Windows header. #undefing min")
|
|
#else
|
|
#warning: macro min is incompatible with C++. #undefing min
|
|
#endif
|
|
#endif
|
|
#undef min
|
|
#endif
|
|
|
|
#ifdef max
|
|
#if !defined(_LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS)
|
|
#if defined(_MSC_VER) && ! defined(__clang__)
|
|
_LIBCPP_WARNING("macro max is incompatible with C++. Try #define NOMINMAX "
|
|
"before any Windows header. #undefing max")
|
|
#else
|
|
#warning: macro max is incompatible with C++. #undefing max
|
|
#endif
|
|
#endif
|
|
#undef max
|
|
#endif
|