| 1 | /* |
| 2 | * Distributed under the Boost Software License, Version 1.0. |
| 3 | * (See accompanying file LICENSE_1_0.txt or copy at |
| 4 | * https://www.boost.org/LICENSE_1_0.txt) |
| 5 | * |
| 6 | * Copyright (c) 2023 Andrey Semashev |
| 7 | */ |
| 8 | |
| 9 | #if !defined(BOOST_SCOPE_ENABLE_WARNINGS) |
| 10 | |
| 11 | #if defined(_MSC_VER) && !defined(__clang__) |
| 12 | |
| 13 | #pragma warning(pop) |
| 14 | |
| 15 | #elif (defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) \ |
| 16 | && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406) || defined(__clang__) |
| 17 | |
| 18 | #pragma GCC diagnostic pop |
| 19 | |
| 20 | #endif |
| 21 | |
| 22 | #endif // !defined(BOOST_SCOPE_ENABLE_WARNINGS) |
| 23 | |