diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:10:06 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:10:06 +0100 |
| commit | d532b43153cb68d6e92c5dac58cbd3c8ab4f60af (patch) | |
| tree | e748d39deee4e4c0983354ccf3fa419263368f87 /include/CompilerKit/ErrorID.h | |
| parent | ba1b968d17a1ed29694f850af58787c3eb2657d4 (diff) | |
feat! Use header guards instead of pragma once.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/ErrorID.h')
| -rw-r--r-- | include/CompilerKit/ErrorID.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/CompilerKit/ErrorID.h b/include/CompilerKit/ErrorID.h index 1424014..0a2e666 100644 --- a/include/CompilerKit/ErrorID.h +++ b/include/CompilerKit/ErrorID.h @@ -7,7 +7,8 @@ * ======================================================== */ -#pragma once +#ifndef NECTAR_COMPILERKIT_ERRORID_H +#define NECTAR_COMPILERKIT_ERRORID_H #include <CompilerKit/Detail/Config.h> @@ -28,3 +29,5 @@ #define NECTAR_FAT_ERROR -37 #define NECTAR_INVALID_ARCH -38 +#endif // NECTAR_COMPILERKIT_ERRORID_H + |
