1234567891011121314151617181920212223242526 |
- #ifndef BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP
- #define BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP
- #include <boost/thread/csbl/memory/config.hpp>
- #include <boost/smart_ptr/make_unique.hpp>
- namespace boost
- {
- namespace csbl
- {
- using ::std::unique_ptr;
- using ::boost::make_unique;
- }
- }
- #endif
|