2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-19 04:42:13 +00:00

std::make_unique is C++14

This commit is contained in:
Peter Dimov
2023-10-13 21:26:18 +03:00
parent 515d95c441
commit 5fb09cd1c1

View File

@@ -12,14 +12,14 @@
#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 ::std::make_unique;
using ::boost::make_unique;
}
}