workaround.hpp 975 B

1234567891011121314151617181920212223242526
  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. #ifndef BOOST_INTRUSIVE_DETAIL_WRKRND_HPP
  11. #define BOOST_INTRUSIVE_DETAIL_WRKRND_HPP
  12. #include <boost/intrusive/detail/config_begin.hpp>
  13. #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  14. #define BOOST_INTRUSIVE_PERFECT_FORWARDING
  15. #endif
  16. //Macros for documentation purposes. For code, expands to the argument
  17. #define BOOST_INTRUSIVE_IMPDEF(TYPE) TYPE
  18. #define BOOST_INTRUSIVE_SEEDOC(TYPE) TYPE
  19. #include <boost/intrusive/detail/config_end.hpp>
  20. #endif //#ifndef BOOST_INTRUSIVE_DETAIL_WRKRND_HPP