12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_CSBL_MEMORY_ALLOCATOR_ARG_HPP
- #define BOOST_CSBL_MEMORY_ALLOCATOR_ARG_HPP
- #include <boost/thread/csbl/memory/config.hpp>
- namespace boost
- {
- namespace csbl
- {
- using ::std::allocator_arg_t;
- using ::std::allocator_arg;
- }
- }
- namespace boost
- {
- using ::boost::csbl::allocator_arg_t;
- using ::boost::csbl::allocator_arg;
- }
- #endif
|