Chris@16: ////////////////////////////////////////////////////////////////////////////// Chris@16: // Chris@16: // (C) Copyright Ion Gaztanaga 2005-2013. Distributed under the Boost Chris@16: // Software License, Version 1.0. (See accompanying file Chris@16: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: // Chris@16: // See http://www.boost.org/libs/interprocess for documentation. Chris@16: // Chris@16: ////////////////////////////////////////////////////////////////////////////// Chris@16: Chris@101: #ifndef BOOST_INTRUSIVE_DETAIL_WORKAROUND_HPP Chris@101: #define BOOST_INTRUSIVE_DETAIL_WORKAROUND_HPP Chris@16: Chris@101: #ifndef BOOST_CONFIG_HPP Chris@101: # include Chris@101: #endif Chris@101: Chris@101: #if defined(BOOST_HAS_PRAGMA_ONCE) Chris@101: # pragma once Chris@101: #endif Chris@101: Chris@101: #ifndef BOOST_CONFIG_HPP Chris@101: #include Chris@101: #endif Chris@16: Chris@16: #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) Chris@16: #define BOOST_INTRUSIVE_PERFECT_FORWARDING Chris@16: #endif Chris@16: Chris@16: //Macros for documentation purposes. For code, expands to the argument Chris@16: #define BOOST_INTRUSIVE_IMPDEF(TYPE) TYPE Chris@16: #define BOOST_INTRUSIVE_SEEDOC(TYPE) TYPE Chris@101: #define BOOST_INTRUSIVE_DOC1ST(TYPE1, TYPE2) TYPE2 Chris@101: #define BOOST_INTRUSIVE_I , Chris@101: #define BOOST_INTRUSIVE_DOCIGN(T1) T1 Chris@16: Chris@16: Chris@101: #endif //#ifndef BOOST_INTRUSIVE_DETAIL_WORKAROUND_HPP