Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:44

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_WINAPI_ENABLE_WARNINGS)
0009 
0010 #if defined(_MSC_VER) && !(defined(__INTEL_COMPILER) || defined(__clang__))
0011 
0012 #pragma warning(push, 3)
0013 // nonstandard extension used : nameless struct/union
0014 #pragma warning(disable: 4201)
0015 // Inconsistent annotation for 'X'
0016 #pragma warning(disable: 28251)
0017 
0018 #elif defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) \
0019     && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406
0020 
0021 #pragma GCC diagnostic push
0022 // ISO C++ 1998 does not support 'long long'
0023 #pragma GCC diagnostic ignored "-Wlong-long"
0024 
0025 #endif
0026 
0027 #endif // !defined(BOOST_WINAPI_ENABLE_WARNINGS)