diff options
author | theraven <theraven@FreeBSD.org> | 2013-07-10 16:28:24 +0000 |
---|---|---|
committer | theraven <theraven@FreeBSD.org> | 2013-07-10 16:28:24 +0000 |
commit | 214e4f8fe625ad54aac3b215909e0b994a5768ec (patch) | |
tree | f757844d307e5ebbf92ab857f2376cceb7807147 /contrib/libc++/src/hash.cpp | |
parent | c660176671bf640bee3fd09dbfa32ad187a9b942 (diff) | |
download | FreeBSD-src-214e4f8fe625ad54aac3b215909e0b994a5768ec.zip FreeBSD-src-214e4f8fe625ad54aac3b215909e0b994a5768ec.tar.gz |
Import new libcxxrt / libc++. This brings some bug fixes, including a potential race condition for static initialisers.
Diffstat (limited to 'contrib/libc++/src/hash.cpp')
-rw-r--r-- | contrib/libc++/src/hash.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/contrib/libc++/src/hash.cpp b/contrib/libc++/src/hash.cpp index 65a9d51..388ab2e 100644 --- a/contrib/libc++/src/hash.cpp +++ b/contrib/libc++/src/hash.cpp @@ -12,12 +12,9 @@ #include "stdexcept" #include "type_traits" -// Don't silence a non-existent warning if clang doesn't yet have this warning. #ifdef __clang__ -#if (__clang_major__ > 3) || ((__clang_major__ == 3) && (__clang_minor__ >= 2)) #pragma clang diagnostic ignored "-Wtautological-constant-out-of-range-compare" #endif -#endif _LIBCPP_BEGIN_NAMESPACE_STD |