Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:25

0001 //////////////////////////////////////////////////////////////////////////////
0002 //
0003 // (C) Copyright Ion Gaztanaga 2012-2012. Distributed under the Boost
0004 // Software License, Version 1.0. (See accompanying file
0005 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // See http://www.boost.org/libs/interprocess for documentation.
0008 //
0009 //////////////////////////////////////////////////////////////////////////////
0010 #ifndef BOOST_INTERPROCESS_EXTERNAL_CONFIG_INCLUDED
0011 #define BOOST_INTERPROCESS_EXTERNAL_CONFIG_INCLUDED
0012 #include <boost/config.hpp>
0013 #endif
0014 
0015 #if defined(__GNUC__) && ((__GNUC__*100 + __GNUC_MINOR__) >= 406)
0016 #  pragma GCC diagnostic push
0017 #  pragma GCC diagnostic ignored "-Wshadow"
0018 #  pragma GCC diagnostic ignored "-Wsign-conversion"
0019 #  pragma GCC diagnostic ignored "-Wconversion"
0020 #  if (BOOST_GCC >= 100000)
0021 #     pragma GCC diagnostic ignored "-Warith-conversion"
0022 #  endif
0023 #endif