1. ホーム
  2. c++

[解決済み] error::make_unique は 'std' のメンバではありません。

2022-09-22 14:41:16

質問

コードレビューに投稿された以下のスレッドプールプログラムをテストするためにコンパイルしようとしています。

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++14 の次期機能 であるため、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 に投票されたものです。これには、配列をカバーするための追加関数が含まれていますが、一般的な考え方は変わりません)。