Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:21

0001 /*
0002  *          Copyright Andrey Semashev 2007 - 2015.
0003  * Distributed under the Boost Software License, Version 1.0.
0004  *    (See accompanying file LICENSE_1_0.txt or copy at
0005  *          http://www.boost.org/LICENSE_1_0.txt)
0006  */
0007 
0008 #if !defined(BOOST_LOG_ENABLE_WARNINGS)
0009 
0010 #if defined(_MSC_VER) && !defined(__clang__)
0011 
0012 #pragma warning(pop)
0013 
0014 #elif (defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) \
0015     && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406) || defined(__clang__)
0016 
0017 #pragma GCC diagnostic pop
0018 
0019 #endif
0020 
0021 #endif // !defined(BOOST_LOG_ENABLE_WARNINGS)
0022 
0023 #include <boost/config/abi_suffix.hpp>