You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto task = std::make_shared< std::packaged_task<return_type()> >(
std::bind(std::forward<F>(f), std::forward<Args>(args)...)
);
or
auto task = std::shared_ptr< std::packaged_task<return_type()> >(
new std::packaged_task<return_type()>(std::bind(std::forward<F>(f), std::forward<Args>(args)...))
);
The text was updated successfully, but these errors were encountered:
As much as I could, I modified it so that it could be used in GCC 11.0 / 12.0.
However, the plugin is not suitable for the latest C⁺⁺17 or higher codecs. https://github.com/Jamaika1/mingw_std_threads
I wanted to compile an htjpeg2000 grok which uses the ThreadPool library.
https://github.com/progschj/ThreadPool
I can't compile the save.
or
The text was updated successfully, but these errors were encountered: