From d532b43153cb68d6e92c5dac58cbd3c8ab4f60af Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 26 Dec 2025 10:10:06 +0100 Subject: feat! Use header guards instead of pragma once. Signed-off-by: Amlal El Mahrouss --- include/DebuggerKit/POSIXMachContract.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'include/DebuggerKit/POSIXMachContract.h') diff --git a/include/DebuggerKit/POSIXMachContract.h b/include/DebuggerKit/POSIXMachContract.h index 438eae0..22b8958 100644 --- a/include/DebuggerKit/POSIXMachContract.h +++ b/include/DebuggerKit/POSIXMachContract.h @@ -4,7 +4,8 @@ ======================================== */ -#pragma once +#ifndef NECTAR_DEBUGGERKIT_POSIXMACHCONTRACT_H +#define NECTAR_DEBUGGERKIT_POSIXMACHCONTRACT_H #ifdef DK_MACH_DEBUGGER @@ -152,5 +153,7 @@ class POSIXMachContract final DK_DEBUGGER_CONTRACT { }; } // namespace DebuggerKit::POSIX -#endif +#endif // DK_MACH_DEBUGGER + +#endif // NECTAR_DEBUGGERKIT_POSIXMACHCONTRACT_H -- cgit v1.2.3