Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 09:44:28

0001 /*
0002  *             Copyright Andrey Semashev 2020.
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_ATOMIC_ENABLE_WARNINGS)
0009 
0010 #if defined(BOOST_MSVC)
0011 
0012 #pragma warning(pop)
0013 
0014 #elif defined(BOOST_GCC) && BOOST_GCC >= 40600
0015 
0016 #pragma GCC diagnostic pop
0017 
0018 #elif defined(BOOST_CLANG)
0019 
0020 #pragma clang diagnostic pop
0021 
0022 #endif
0023 
0024 #endif // !defined(BOOST_ATOMIC_ENABLE_WARNINGS)