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 8 #if !defined(BOOST_ATOMIC_ENABLE_WARNINGS) 9 10 #if defined(BOOST_MSVC) 11 12 #pragma warning(pop) 13 14 #elif defined(BOOST_GCC) && BOOST_GCC >= 40600 15 16 #pragma GCC diagnostic pop 17 18 #elif defined(BOOST_CLANG) 19 20 #pragma clang diagnostic pop 21 22 #endif 23 24 #endif // !defined(BOOST_ATOMIC_ENABLE_WARNINGS) 25