Skip to content

Commit

Permalink
Silence Xcode 14.3 deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Feb 1, 2024
1 parent 702bc22 commit e5ab953
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions deps/boost/boost/container_hash/hash.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
#include <system_error>
#endif

#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#endif

#if defined(BOOST_MSVC)
#pragma warning(push)

Expand Down Expand Up @@ -749,6 +754,10 @@ namespace boost
#pragma warning(pop)
#endif

#ifdef __clang__
#pragma clang diagnostic pop
#endif

#endif // BOOST_FUNCTIONAL_HASH_HASH_HPP

// Include this outside of the include guards in case the file is included
Expand Down

0 comments on commit e5ab953

Please sign in to comment.