私はそれをテストするために、コードレビューに投稿された次のスレッドプールプログラムをコンパイルしようとしています。
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)...));
}
(FYI、 これはmake_unique
の最終バージョンです C++ 14に投票されました。これには配列をカバーする追加の関数が含まれますが、一般的な考え方は同じです。)
最新のコンパイラを使用している場合、ビルド設定で次を変更できます。
C++ Language Dialect C++14[-std=c++14]
これは私のために動作します。
1.gccバージョン> = 5
2.CXXFLAGS + = -std = c ++ 14
3。 #include <メモリ>
XCodeを使用しているときにこれが起こります(2019年に最新バージョンのXCodeを使用しています...)。ビルド統合にCMakeを使用しています。 CMakeLists.txtで次のディレクティブを使用すると、修正されました。
set(CMAKE_CXX_STANDARD 14)
。
例:
cmake_minimum_required(VERSION 3.14.0)
set(CMAKE_CXX_STANDARD 14)
# Rest of your declarations...
私の場合 std = c ++を更新する必要がありました
私のgradleファイルにはこれがありました
Android {
...
defaultConfig {
...
externalNativeBuild {
cmake {
cppFlags "-std=c++11", "-Wall"
arguments "-DANDROID_STL=c++_static",
"-DARCORE_LIBPATH=${arcore_libpath}/jni",
"-DARCORE_INCLUDE=${project.rootDir}/app/src/main/libs"
}
}
....
}
この行を変更しました
Android {
...
defaultConfig {
...
externalNativeBuild {
cmake {
cppFlags "-std=c++17", "-Wall" <-- this number from 11 to 17 (or 14)
arguments "-DANDROID_STL=c++_static",
"-DARCORE_LIBPATH=${arcore_libpath}/jni",
"-DARCORE_INCLUDE=${project.rootDir}/app/src/main/libs"
}
}
....
}
それでおしまい...