mirror of
https://git.citron-emu.org/citron/emulator
synced 2026-01-10 11:44:19 +00:00
chore(core/debugger): modernize Boost.Process include path to v1
Signed-off-by: Boss.sfc <boss.sfc@citron-emu.org>
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
#include <boost/asio.hpp>
|
||||
#if !defined(__ANDROID__) && !defined(__APPLE__)
|
||||
#include <boost/process/async_pipe.hpp>
|
||||
#include <boost/process/v1/async_pipe.hpp>
|
||||
#endif
|
||||
|
||||
#include "common/logging/log.h"
|
||||
@@ -334,7 +334,7 @@ private:
|
||||
struct ConnectionState {
|
||||
boost::asio::ip::tcp::socket client_socket;
|
||||
#if !defined(__ANDROID__) && !defined(__APPLE__)
|
||||
boost::process::async_pipe signal_pipe;
|
||||
boost::process::v1::async_pipe signal_pipe;
|
||||
#else
|
||||
// Use a regular socket pair for Android and macOS
|
||||
boost::asio::ip::tcp::socket signal_pipe;
|
||||
|
||||
Reference in New Issue
Block a user