diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 22:26:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-29 22:26:33 -0500 |
| commit | db929ce81ca026cabb6d61d3c7b80190262d3c83 (patch) | |
| tree | df8f090049f9a3893da80ab7aae5bd001297cd5b /src/DebuggerKit/DebuggerContract.h | |
| parent | 0c8f94db58637420fa3b9513823a3cdb3e92bf38 (diff) | |
| parent | f900849f98bad9988805ec89c587395752490486 (diff) | |
Merge pull request #40 from nekernel-org/developv0.0.7
chore: API and system design update.
Diffstat (limited to 'src/DebuggerKit/DebuggerContract.h')
| -rw-r--r-- | src/DebuggerKit/DebuggerContract.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DebuggerKit/DebuggerContract.h b/src/DebuggerKit/DebuggerContract.h index 2114041..2db0526 100644 --- a/src/DebuggerKit/DebuggerContract.h +++ b/src/DebuggerKit/DebuggerContract.h @@ -6,7 +6,7 @@ #pragma once -#include <DebuggerKit/Platform.h> +#include <DebuggerKit/Config.h> #define DK_DEBUGGER_CONTRACT : public ::DebuggerKit::DebuggerContract @@ -46,7 +46,7 @@ class DebuggerContract { virtual std::unordered_map<uintptr_t, uintptr_t>& Get() { return m_breakpoints; } protected: - ProcessID m_pid{(ProcessID)~0}; + ProcessID m_pid{(ProcessID) ~0}; std::unordered_map<uintptr_t, uintptr_t> m_breakpoints; }; } // namespace DebuggerKit |
