Skip to content

Commit

Permalink
Fix process namespace error
Browse files Browse the repository at this point in the history
  • Loading branch information
lriggs committed Dec 18, 2024
1 parent 9b3e8d7 commit c54246e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/testing/process.cc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
# include <thread>

# ifdef BOOST_PROCESS_USE_V2
namespace asio = BOOST_PROCESS_V2_ASIO_NAMESPACE;
namespace asiolocal = BOOST_PROCESS_V2_ASIO_NAMESPACE;
namespace process = BOOST_PROCESS_V2_NAMESPACE;
namespace filesystem = process::filesystem;
# elif defined(BOOST_PROCESS_HAVE_V1)
Expand Down Expand Up @@ -243,7 +243,7 @@ class Process::Impl {
# ifdef BOOST_PROCESS_USE_V2
std::unordered_map<process::environment::key, process::environment::value> env_;
std::unique_ptr<process::process> process_;
asio::io_context ctx_;
asiolocal::io_context ctx_;
// boost/process/v2/ doesn't support process group yet:
// https://github.com/boostorg/process/issues/259
# else
Expand Down

0 comments on commit c54246e

Please sign in to comment.