footer.hpp 505 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright Andrey Semashev 2020.
  3. * Distributed under the Boost Software License, Version 1.0.
  4. * (See accompanying file LICENSE_1_0.txt or copy at
  5. * http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #if !defined(BOOST_ATOMIC_ENABLE_WARNINGS)
  8. #if defined(BOOST_MSVC)
  9. #pragma warning(pop)
  10. #elif defined(BOOST_GCC) && BOOST_GCC >= 40600
  11. #pragma GCC diagnostic pop
  12. #elif defined(BOOST_CLANG)
  13. #pragma clang diagnostic pop
  14. #endif
  15. #endif // !defined(BOOST_ATOMIC_ENABLE_WARNINGS)