Disable -Wmismatched-tags under Clang

This commit is contained in:
Peter Dimov
2022-11-28 00:57:19 +02:00
parent c61a4f691e
commit 30560ada18

View File

@@ -2,6 +2,10 @@
// Distributed under the Boost Software License, Version 1.0. // Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt // https://www.boost.org/LICENSE_1_0.txt
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wmismatched-tags"
#endif
#include <boost/container_hash/is_tuple_like.hpp> #include <boost/container_hash/is_tuple_like.hpp>
#include <boost/core/lightweight_test_trait.hpp> #include <boost/core/lightweight_test_trait.hpp>
#include <boost/config.hpp> #include <boost/config.hpp>