Skip to content

Commit 5fb09cd

Browse files
committed
std::make_unique is C++14
1 parent 515d95c commit 5fb09cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/boost/thread/csbl/memory/unique_ptr.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
#define BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP
1313

1414
#include <boost/thread/csbl/memory/config.hpp>
15+
#include <boost/smart_ptr/make_unique.hpp>
1516

1617
namespace boost
1718
{
1819
namespace csbl
1920
{
2021
using ::std::unique_ptr;
21-
using ::std::make_unique;
22-
22+
using ::boost::make_unique;
2323
}
2424
}
2525

0 commit comments

Comments
 (0)