123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef BOOST_MPL_AUX_ADL_BARRIER_HPP_INCLUDED
- #define BOOST_MPL_AUX_ADL_BARRIER_HPP_INCLUDED
- #include <boost/mpl/aux_/config/adl.hpp>
- #include <boost/mpl/aux_/config/gcc.hpp>
- #include <boost/mpl/aux_/config/workaround.hpp>
- #if !defined(BOOST_MPL_CFG_NO_ADL_BARRIER_NAMESPACE)
- # define BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE mpl_
- # define BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN namespace mpl_ {
- # define BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE }
- # define BOOST_MPL_AUX_ADL_BARRIER_DECL(type) \
- namespace boost { namespace mpl { \
- using ::BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::type; \
- } } \
- #if !defined(BOOST_MPL_PREPROCESSING_MODE)
- namespace BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE { namespace aux {} }
- namespace boost { namespace mpl { using namespace BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE;
- namespace aux { using namespace BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::aux; }
- }}
- #endif
- #else
- # define BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE boost::mpl
- # define BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN namespace boost { namespace mpl {
- # define BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE }}
- # define BOOST_MPL_AUX_ADL_BARRIER_DECL(type)
- #endif
- #endif
|