diff options
Diffstat (limited to 'devel/cpprestsdk/files/patch-src_pplx_pplxlinux.cpp')
-rw-r--r-- | devel/cpprestsdk/files/patch-src_pplx_pplxlinux.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/cpprestsdk/files/patch-src_pplx_pplxlinux.cpp b/devel/cpprestsdk/files/patch-src_pplx_pplxlinux.cpp new file mode 100644 index 000000000000..51af71ecc2a3 --- /dev/null +++ b/devel/cpprestsdk/files/patch-src_pplx_pplxlinux.cpp @@ -0,0 +1,11 @@ +--- src/pplx/pplxlinux.cpp.orig 2023-12-05 04:23:31 UTC ++++ src/pplx/pplxlinux.cpp +@@ -35,7 +35,7 @@ _PPLXIMP void linux_scheduler::schedule(TaskProc_t pro + + _PPLXIMP void linux_scheduler::schedule(TaskProc_t proc, void* param) + { +- crossplat::threadpool::shared_instance().service().post(boost::bind(proc, param)); ++ boost::asio::post(crossplat::threadpool::shared_instance().service(), boost::bind(proc, param)); + } + + } // namespace details |