Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2013-11-16 03:41:01 +0400
committerYaron Keren <yaron.keren@gmail.com>2013-11-16 03:41:01 +0400
commitc0299d7f53349c0595e6f252e444ea87e07d7315 (patch)
tree6bb2f95bcc778027e4f31455464c93d51b43b3f9 /libcxx/include/__undef_min_max
parent249becb8310f62cebc7cd10d92416808dbea1829 (diff)
Fix-it suggestion for fixing min or max defines on Windows.
llvm-svn: 194891
Diffstat (limited to 'libcxx/include/__undef_min_max')
-rw-r--r--libcxx/include/__undef_min_max6
1 files changed, 4 insertions, 2 deletions
diff --git a/libcxx/include/__undef_min_max b/libcxx/include/__undef_min_max
index 2b6bc90a125a..5df9412c64fd 100644
--- a/libcxx/include/__undef_min_max
+++ b/libcxx/include/__undef_min_max
@@ -10,7 +10,8 @@
#ifdef min
#if defined(_MSC_VER) && ! defined(__clang__)
-_LIBCPP_WARNING("macro min is incompatible with C++. #undefing min")
+_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
@@ -19,7 +20,8 @@ _LIBCPP_WARNING("macro min is incompatible with C++. #undefing min")
#ifdef max
#if defined(_MSC_VER) && ! defined(__clang__)
-_LIBCPP_WARNING("macro max is incompatible with C++. #undefing max")
+_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