summaryrefslogtreecommitdiffhomepage
path: root/src/DebuggerKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 05:44:58 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 05:44:58 +0100
commit679e1cf7af3b36faf1160c34e688dc91d1409f46 (patch)
tree0d69fb045af20988c9bd4b39ee4a06601e1525ed /src/DebuggerKit
parent4c98e23db8c34cfd7f81522dfb48ee7e949cc34e (diff)
[CHORE] Update format.sh and ran it.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/DebuggerKit')
-rw-r--r--src/DebuggerKit/src/MachContract.cpp4
-rw-r--r--src/DebuggerKit/src/NeKernelContract.cpp2
2 files changed, 2 insertions, 4 deletions
diff --git a/src/DebuggerKit/src/MachContract.cpp b/src/DebuggerKit/src/MachContract.cpp
index 7f9ba5d..eac0ad8 100644
--- a/src/DebuggerKit/src/MachContract.cpp
+++ b/src/DebuggerKit/src/MachContract.cpp
@@ -33,9 +33,7 @@ NECTAR_MODULE(DebuggerMachPOSIX) {
constexpr auto kMaxArgs = 3;
- if (argc >= kMaxArgs
- && std::string(argv[1]) == "-p"
- && argv[2] != nullptr) {
+ if (argc >= kMaxArgs && std::string(argv[1]) == "-p" && argv[2] != nullptr) {
kPath = argv[2];
kUserDebugger.SetPath(kPath);
diff --git a/src/DebuggerKit/src/NeKernelContract.cpp b/src/DebuggerKit/src/NeKernelContract.cpp
index 4dd6a70..5e7fb5e 100644
--- a/src/DebuggerKit/src/NeKernelContract.cpp
+++ b/src/DebuggerKit/src/NeKernelContract.cpp
@@ -15,7 +15,7 @@
using namespace DebuggerKit::Detail;
using namespace DebuggerKit::NeKernel;
-NeKernelContract::NeKernelContract() = default;
+NeKernelContract::NeKernelContract() = default;
NeKernelContract::~NeKernelContract() = default;
bool NeKernelContract::Attach(CompilerKit::STLString path, CompilerKit::STLString argv,