From 056e6bf95169475168bd15436c651a3aa665a643 Mon Sep 17 00:00:00 2001 From: "Boss.sfc" Date: Mon, 15 Sep 2025 21:59:01 +0700 Subject: [PATCH] chore(core/debugger): modernize Boost.Process include path to v1 Signed-off-by: Boss.sfc --- src/core/debugger/debugger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/debugger/debugger.cpp b/src/core/debugger/debugger.cpp index 0116518bb..eb2a662e3 100644 --- a/src/core/debugger/debugger.cpp +++ b/src/core/debugger/debugger.cpp @@ -7,7 +7,7 @@ #include #if !defined(__ANDROID__) && !defined(__APPLE__) -#include +#include #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;