123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef BOOST_CSBL_DEQUE_HPP
- #define BOOST_CSBL_DEQUE_HPP
- #include <boost/config.hpp>
- #if defined BOOST_THREAD_USES_BOOST_DEQUE || defined BOOST_NO_CXX11_RVALUE_REFERENCES || (defined _MSC_VER && _MSC_FULL_VER < 180020827)
- #ifndef BOOST_THREAD_USES_BOOST_DEQUE
- #define BOOST_THREAD_USES_BOOST_DEQUE
- #endif
- #include <boost/container/deque.hpp>
- #else
- #include <deque>
- #endif
- namespace boost
- {
- namespace csbl
- {
- #if defined BOOST_THREAD_USES_BOOST_DEQUE
- using ::boost::container::deque;
- #else
- using ::std::deque;
- #endif
- }
- }
- #endif
|