summaryrefslogtreecommitdiffhomepage
path: root/src/DebuggerKit/DebuggerContract.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/DebuggerKit/DebuggerContract.h')
-rw-r--r--src/DebuggerKit/DebuggerContract.h4
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