summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
Diffstat (limited to 'dev')
-rw-r--r--dev/LibDebugger/src/NeKernelContract.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/dev/LibDebugger/src/NeKernelContract.cc b/dev/LibDebugger/src/NeKernelContract.cc
index 5c0243b..bc93a46 100644
--- a/dev/LibDebugger/src/NeKernelContract.cc
+++ b/dev/LibDebugger/src/NeKernelContract.cc
@@ -10,7 +10,6 @@
#include <LibCompiler/Defines.h>
#include <LibDebugger/NeKernelContract.h>
#include <Vendor/Dialogs.h>
-#include <string>
constexpr static UInt16 kDebugPort = 51820;
@@ -20,11 +19,11 @@ NeKernelContract::NeKernelContract() = default;
NeKernelContract::~NeKernelContract() = default;
-bool NeKernelContract::Attach(std::string path, std::string argv, ProcessID& pid) noexcept {
+bool NeKernelContract::Attach(LibCompiler::STLString path, LibCompiler::STLString argv, ProcessID& pid) noexcept {
return false;
}
-bool NeKernelContract::Breakpoint(std::string symbol) noexcept {
+bool NeKernelContract::Breakpoint(LibCompiler::STLString symbol) noexcept {
return false;
}