summaryrefslogtreecommitdiffhomepage
path: root/include/DebuggerKit/NeSystem.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-26 09:20:25 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-26 09:23:38 +0100
commit9b85b2810a64fb512d3ab35b8965db3071618223 (patch)
tree063352a1e6e3c20bba085b59c1d0700cf4d2eeb0 /include/DebuggerKit/NeSystem.h
parent7c506c9b48bbad8fd87da66882311089572dc767 (diff)
[FEAT&FIX] DebuggerKit: Fix compiler errors, update installer.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/DebuggerKit/NeSystem.h')
-rw-r--r--include/DebuggerKit/NeSystem.h6
1 files changed, 3 insertions, 3 deletions
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;