summaryrefslogtreecommitdiffhomepage
path: root/include/DebuggerKit
diff options
context:
space:
mode:
Diffstat (limited to 'include/DebuggerKit')
-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;