summaryrefslogtreecommitdiffhomepage
path: root/src/DebuggerKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-26 17:02:13 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-26 17:02:13 +0100
commitf64c7647ac839aed48bf45c7a44cb73d5795a149 (patch)
treed6422a95e27b929872051f1856dd8214789f73c0 /src/DebuggerKit
parent9b85b2810a64fb512d3ab35b8965db3071618223 (diff)
[FEAT] Frontend: Add `try` syntax, frontend nsan (Nectar Sanitizer) checks added. And installer updates.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/DebuggerKit')
-rw-r--r--src/DebuggerKit/src/NeSystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DebuggerKit/src/NeSystem.cpp b/src/DebuggerKit/src/NeSystem.cpp
index 381d2db..287a50a 100644
--- a/src/DebuggerKit/src/NeSystem.cpp
+++ b/src/DebuggerKit/src/NeSystem.cpp
@@ -18,8 +18,8 @@ using namespace DebuggerKit::NeKernel;
NeSystemDebugger::NeSystemDebugger() = default;
NeSystemDebugger::~NeSystemDebugger() = default;
-bool NeSystemDebugger::Attach(const CompilerKit::STLString& path, const CompilerKit::STLString& argv,
- ProcessID& pid) noexcept {
+bool NeSystemDebugger::Attach(const CompilerKit::STLString& path,
+ const CompilerKit::STLString& argv, ProcessID& pid) noexcept {
if (path.empty() || argv.empty()) return NO;
m_socket = ::socket(AF_INET, SOCK_STREAM, 0);