From 9b85b2810a64fb512d3ab35b8965db3071618223 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 26 Mar 2026 09:20:25 +0100 Subject: [FEAT&FIX] DebuggerKit: Fix compiler errors, update installer. Signed-off-by: Amlal El Mahrouss --- src/DebuggerKit/src/NeSystem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/DebuggerKit/src/NeSystem.cpp b/src/DebuggerKit/src/NeSystem.cpp index ea3beb4..381d2db 100644 --- a/src/DebuggerKit/src/NeSystem.cpp +++ b/src/DebuggerKit/src/NeSystem.cpp @@ -18,7 +18,7 @@ using namespace DebuggerKit::NeKernel; NeSystemDebugger::NeSystemDebugger() = default; NeSystemDebugger::~NeSystemDebugger() = default; -bool NeSystemDebugger::Attach(CompilerKit::STLString path, CompilerKit::STLString argv, +bool NeSystemDebugger::Attach(const CompilerKit::STLString& path, const CompilerKit::STLString& argv, ProcessID& pid) noexcept { if (path.empty() || argv.empty()) return NO; @@ -44,7 +44,7 @@ bool NeSystemDebugger::Attach(CompilerKit::STLString path, CompilerKit::STLStrin return ret; } -bool NeSystemDebugger::BreakAt(CompilerKit::STLString symbol) noexcept { +bool NeSystemDebugger::BreakAt(const CompilerKit::STLString& symbol) noexcept { CompilerKit::STLString pkt = Detail::kDebugMagic; pkt += ";SYM=\""; pkt += symbol; -- cgit v1.2.3