end_no_sanitize.hpp 549 B

12345678910111213141516171819
  1. /* Copyright 2024 Joaquin M Lopez Munoz.
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * See http://www.boost.org/libs/poly_collection for library home page.
  7. */
  8. #if defined(BOOST_POLY_COLLECTION_INSIDE_NO_SANITIZE)
  9. #if defined(BOOST_GCC_VERSION)
  10. #pragma GCC diagnostic pop
  11. #elif defined(BOOST_CLANG)
  12. #pragma clang diagnostic pop
  13. #endif
  14. #undef BOOST_POLY_COLLECTION_NO_SANITIZE
  15. #undef BOOST_POLY_COLLECTION_INSIDE_NO_SANITIZE
  16. #endif