]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/interprocess/detail/config_external_begin.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / interprocess / detail / config_external_begin.hpp
CommitLineData
7c673cae
FG
1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2012-2012. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7// See http://www.boost.org/libs/interprocess for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10#ifndef BOOST_INTERPROCESS_EXTERNAL_CONFIG_INCLUDED
11#define BOOST_INTERPROCESS_EXTERNAL_CONFIG_INCLUDED
12#include <boost/config.hpp>
13#endif
14
15#if defined(__GNUC__) && ((__GNUC__*100 + __GNUC_MINOR__) >= 406)
16# pragma GCC diagnostic push
17# pragma GCC diagnostic ignored "-Wshadow"
1e59de90
TL
18# pragma GCC diagnostic ignored "-Wsign-conversion"
19# pragma GCC diagnostic ignored "-Wconversion"
20# if (BOOST_GCC >= 100000)
21# pragma GCC diagnostic ignored "-Warith-conversion"
22# endif
7c673cae 23#endif