错误:: make_unique不是“std”的成员

我正在编译下面的代码审查上发布的线程池程序来testing它。

https://codereview.stackexchange.com/questions/55100/platform-independant-thread-pool-v4

但是我得到的错误

threadpool.hpp: In member function 'std::future<decltype (task((forward<Args>)(args)...))> threadpool::enqueue_task(Func&&, Args&& ...)': threadpool.hpp:94:28: error: 'make_unique' was not declared in this scope auto package_ptr = make_unique<task_package_impl<R, decltype(bound_task)>> (std::move(bound_task), std::move(promise)); ^ threadpool.hpp:94:81: error: expected primary-expression before '>' token auto package_ptr = make_unique<task_package_impl<R, decltype(bound_task)>>(std::move(bound_task), std::move(promise)); ^ main.cpp: In function 'int main()': main.cpp:9:17: error: 'make_unique' is not a member of 'std' auto ptr1 = std::make_unique<unsigned>(); ^ main.cpp:9:34: error: expected primary-expression before 'unsigned' auto ptr1 = std::make_unique<unsigned>(); ^ main.cpp:14:17: error: 'make_unique' is not a member of 'std' auto ptr2 = std::make_unique<unsigned>(); ^ main.cpp:14:34: error: expected primary-expression before 'unsigned' auto ptr2 = std::make_unique<unsigned>(); 

make_unique是即将出现的C ++ 14function ,因此可能无法在您的编译器上使用,即使它与C ++ 11兼容。

但是,您可以轻松地推出自己的实现:

 template<typename T, typename... Args> std::unique_ptr<T> make_unique(Args&&... args) { return std::unique_ptr<T>(new T(std::forward<Args>(args)...)); } 

(仅供参考, 这里是make_unique的最终版本,它被投票到C ++ 14中,其中包括用于数组的其他函数,但总体思路仍然是一样的。

如果你有最新的编译器,你可以在你的编译设置中更改以下内容:

  C++ Language Dialect C++14[-std=c++14] 

这对我有用。