File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ set(STDEXEC_ASIO_IMPLEMENTATION "boost" CACHE STRING "boost")
416416set_property (CACHE STDEXEC_ASIO_IMPLEMENTATION PROPERTY STRINGS boost standalone )
417417
418418if (STDEXEC_ENABLE_ASIO)
419- set (STDEXEC_ASIO_USES_ASIO FALSE )
419+ set (STDEXEC_ASIO_USES_BOOST FALSE )
420420 set (STDEXEC_ASIO_USES_STANDALONE FALSE )
421421
422422 include (rapids-find )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ function(import_standalone_asio)
1111 set (options "" )
1212 set (args TAG VERSION)
1313 set (multi_args "" )
14- cmake_parse_arguments (IMPORT_STANDALONE_ASIO "${options} " "${args} " "${multi_args} " )
14+ cmake_parse_arguments (IMPORT_STANDALONE_ASIO "${options} " "${args} " "${multi_args} " ${ARGN} )
1515
1616 CPMAddPackage ("gh:chriskohlhoff/asio#${IMPORT_STANDALONE_ASIO_TAG} @${IMPORT_STANDALONE_ASIO_VERSION} " )
1717
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ namespace execpools {
1515 public:
1616 asio_thread_pool ()
1717 : pool_()
18- , executor_(pool_.executor()) = default ;
18+ , executor_(pool_.executor()) {
19+ }
1920
2021 explicit asio_thread_pool (uint32_t num_threads)
2122 : pool_(num_threads)
You can’t perform that action at this time.
0 commit comments