1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225
- #define BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225
- #include <boost/icl/detail/requires_cxx11.hpp>
- #include <boost/icl/detail/boost_config.hpp>
- #if defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION)
- # define ICL_IMPL_SPACE boost::container
- #elif defined(ICL_USE_STD_IMPLEMENTATION)
- # define ICL_IMPL_SPACE std
- #else
- # define ICL_IMPL_SPACE std
- #endif
- #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
- # define BOOST_ICL_NO_CXX11_RVALUE_REFERENCES
- #endif
- #include <boost/move/move.hpp>
- #endif
|