diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
| commit | 9e746d42d2e3faa526f12ba222f5ee6924dd30f9 (patch) | |
| tree | 7f1a83f69562a2725bb9cda27c31d120640d2c1c /src/kernel/CompilerKit/Detail.h | |
| parent | 731758b271233b9c11052001ffc20a5a2ca1f365 (diff) | |
feat! breaking API changes, use header guards and libSystem fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/CompilerKit/Detail.h')
| -rw-r--r-- | src/kernel/CompilerKit/Detail.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/CompilerKit/Detail.h b/src/kernel/CompilerKit/Detail.h index 14c23754..b772026a 100644 --- a/src/kernel/CompilerKit/Detail.h +++ b/src/kernel/CompilerKit/Detail.h @@ -4,7 +4,8 @@ ======================================== */ -#pragma once +#ifndef COMPILERKIT_DETAIL_H +#define COMPILERKIT_DETAIL_H #ifdef __NEOSKRNL__ #include <NeKit/Config.h> @@ -25,3 +26,5 @@ #define NE_MOVE_DEFAULT(KLASS) \ KLASS& operator=(KLASS&&) = default; \ KLASS(KLASS&&) = default; + +#endif |
