From 30560ada180bd6b1d7d85f9fc1775dcdad1bdc55 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 28 Nov 2022 00:57:19 +0200 Subject: [PATCH] Disable -Wmismatched-tags under Clang --- test/is_tuple_like_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/is_tuple_like_test.cpp b/test/is_tuple_like_test.cpp index 553d6ca..728dec3 100644 --- a/test/is_tuple_like_test.cpp +++ b/test/is_tuple_like_test.cpp @@ -2,6 +2,10 @@ // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt +#if defined(__clang__) +# pragma clang diagnostic ignored "-Wmismatched-tags" +#endif + #include #include #include