footer.hpp 643 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright Andrey Semashev 2007 - 2015.
  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_LOG_ENABLE_WARNINGS)
  8. #if defined(_MSC_VER) && !defined(__clang__)
  9. #pragma warning(pop)
  10. #elif (defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) \
  11. && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406) || defined(__clang__)
  12. #pragma GCC diagnostic pop
  13. #endif
  14. #endif // !defined(BOOST_LOG_ENABLE_WARNINGS)
  15. #include <boost/config/abi_suffix.hpp>