ignore warning on xxhsash (#1323)

This commit is contained in:
water111 2022-04-18 18:42:31 -04:00 committed by GitHub
parent bbb6ee176d
commit f330b396a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
third-party/xxhash.hpp generated vendored
View file

@ -47,6 +47,9 @@ You can contact the author at :
*/
#include <immintrin.h>
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wshadow"
namespace xxh {
/* *************************************
* Versioning
@ -1936,3 +1939,4 @@ using canonical32_t = canonical_t<32>;
using canonical64_t = canonical_t<64>;
using canonical128_t = canonical_t<128>;
} // namespace xxh
#pragma clang diagnostic pop