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 --- include/DebuggerKit/NeSystem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/DebuggerKit') diff --git a/include/DebuggerKit/NeSystem.h b/include/DebuggerKit/NeSystem.h index 299815d..a0f3c39 100644 --- a/include/DebuggerKit/NeSystem.h +++ b/include/DebuggerKit/NeSystem.h @@ -22,7 +22,7 @@ class NeSystemDebugger; /// \brief NeKernel Debugger Contract /// \author Amlal El Mahrouss /// =========================================================== /// -class NeSystemDebugger final DK_DEBUGGER_CONTRACT { +class NeSystemDebugger DK_DEBUGGER_CONTRACT { public: NeSystemDebugger(); virtual ~NeSystemDebugger() override; @@ -32,9 +32,9 @@ class NeSystemDebugger final DK_DEBUGGER_CONTRACT { NeSystemDebugger(const NeSystemDebugger&) = default; public: - bool Attach(CompilerKit::STLString path, CompilerKit::STLString arg_v, + bool Attach(const CompilerKit::STLString& path, const CompilerKit::STLString& arg_v, ProcessID& pid) noexcept override; - bool BreakAt(CompilerKit::STLString symbol) noexcept override; + bool BreakAt(const CompilerKit::STLString& symbol) noexcept override; bool Break() noexcept override; bool Continue() noexcept override; bool Detach() noexcept override; -- cgit v1.2.3