mirror of
https://git.citron-emu.org/citron/emulator
synced 2025-12-23 20:33:41 +00:00
Merge branch 'Boss-Boost-Fix' into 'main'
chore(core/debugger): modernize Boost.Process include path to v1 See merge request citron/emulator!6
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include <boost/asio.hpp>
|
#include <boost/asio.hpp>
|
||||||
#if !defined(__ANDROID__) && !defined(__APPLE__)
|
#if !defined(__ANDROID__) && !defined(__APPLE__)
|
||||||
#include <boost/process/async_pipe.hpp>
|
#include <boost/process/v1/async_pipe.hpp>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "common/logging/log.h"
|
#include "common/logging/log.h"
|
||||||
@@ -334,7 +334,7 @@ private:
|
|||||||
struct ConnectionState {
|
struct ConnectionState {
|
||||||
boost::asio::ip::tcp::socket client_socket;
|
boost::asio::ip::tcp::socket client_socket;
|
||||||
#if !defined(__ANDROID__) && !defined(__APPLE__)
|
#if !defined(__ANDROID__) && !defined(__APPLE__)
|
||||||
boost::process::async_pipe signal_pipe;
|
boost::process::v1::async_pipe signal_pipe;
|
||||||
#else
|
#else
|
||||||
// Use a regular socket pair for Android and macOS
|
// Use a regular socket pair for Android and macOS
|
||||||
boost::asio::ip::tcp::socket signal_pipe;
|
boost::asio::ip::tcp::socket signal_pipe;
|
||||||
|
|||||||
Reference in New Issue
Block a user