diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-09-03 18:13:11 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-09-03 18:13:11 +0000 |
commit | 49713b442caa62154b53335b85810f9209da63c8 (patch) | |
tree | b9cfd0a6d63e73b22cbbaf3d5ffafa747e568799 /libcxx/include | |
parent | c38826ccf3fe926bac84758d773852617bcb532a (diff) | |
download | bcm5719-llvm-49713b442caa62154b53335b85810f9209da63c8.tar.gz bcm5719-llvm-49713b442caa62154b53335b85810f9209da63c8.zip |
Some minor mingw64 porting tweaks from Glen.
llvm-svn: 163120
Diffstat (limited to 'libcxx/include')
-rw-r--r-- | libcxx/include/__undef_min_max | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/__undef_min_max b/libcxx/include/__undef_min_max index 88bc53feaaf..b1e80d1b049 100644 --- a/libcxx/include/__undef_min_max +++ b/libcxx/include/__undef_min_max @@ -9,11 +9,11 @@ //===----------------------------------------------------------------------===// #ifdef min -#warning: macro min is incompatible with C++. #undef'ing min +#warning: macro min is incompatible with C++. #undefing min #undef min #endif #ifdef max -#warning: macro max is incompatible with C++. #undef'ing max +#warning: macro max is incompatible with C++. #undefing max #undef max #endif |