1 | ////////////////////////////////////////////////////////////////////////////// |
2 | // |
3 | // (C) Copyright Ion Gaztanaga 2005-2013. 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 | |
11 | #ifndef BOOST_INTRUSIVE_DETAIL_WORKAROUND_HPP |
12 | #define BOOST_INTRUSIVE_DETAIL_WORKAROUND_HPP |
13 | |
14 | #ifndef BOOST_CONFIG_HPP |
15 | # include <boost/config.hpp> |
16 | #endif |
17 | |
18 | #if defined(BOOST_HAS_PRAGMA_ONCE) |
19 | # pragma once |
20 | #endif |
21 | |
22 | #ifndef BOOST_CONFIG_HPP |
23 | #include <boost/config.hpp> |
24 | #endif |
25 | |
26 | #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) |
27 | #define BOOST_INTRUSIVE_PERFECT_FORWARDING |
28 | #endif |
29 | |
30 | //Macros for documentation purposes. For code, expands to the argument |
31 | #define BOOST_INTRUSIVE_IMPDEF(TYPE) TYPE |
32 | #define BOOST_INTRUSIVE_SEEDOC(TYPE) TYPE |
33 | #define BOOST_INTRUSIVE_DOC1ST(TYPE1, TYPE2) TYPE2 |
34 | #define BOOST_INTRUSIVE_I , |
35 | #define BOOST_INTRUSIVE_DOCIGN(T1) T1 |
36 | |
37 | |
38 | #endif //#ifndef BOOST_INTRUSIVE_DETAIL_WORKAROUND_HPP |
39 | |