From f330b396a57f5c3d0867c637edd57ab698dd734c Mon Sep 17 00:00:00 2001 From: water111 <48171810+water111@users.noreply.github.com> Date: Mon, 18 Apr 2022 18:42:31 -0400 Subject: [PATCH] ignore warning on xxhsash (#1323) --- third-party/xxhash.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/third-party/xxhash.hpp b/third-party/xxhash.hpp index 804569de6..8a632ddfb 100644 --- a/third-party/xxhash.hpp +++ b/third-party/xxhash.hpp @@ -47,6 +47,9 @@ You can contact the author at : */ #include +#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 \ No newline at end of file