Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 08:44:21

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