summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-24 11:09:12 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-24 11:10:42 +0100
commit41458b7253c524db10088657c930d300fc1b09ca (patch)
treecb98672693c922866ee9c35563956d7c9e194867 /include/CompilerKit
parent0966a15e05ae1645c8e0785d6fe44a9b529be6b3 (diff)
chore: assemblers: update assembler flag.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit')
-rw-r--r--include/CompilerKit/AE.h4
-rw-r--r--include/CompilerKit/AST.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/CompilerKit/AE.h b/include/CompilerKit/AE.h
index 777dc0b..c69262c 100644
--- a/include/CompilerKit/AE.h
+++ b/include/CompilerKit/AE.h
@@ -58,8 +58,8 @@ typedef struct AERecordHeader final {
} PACKED AERecordHeader, *AERecordHeaderPtr;
enum {
- kKindImportSymbol = 0x356,
- kKindExportSymbol = 0x237,
+ kKindImportSymbol = 0x356,
+ kKindExportSymbol = 0x237,
};
enum {
diff --git a/include/CompilerKit/AST.h b/include/CompilerKit/AST.h
index fef5279..1917081 100644
--- a/include/CompilerKit/AST.h
+++ b/include/CompilerKit/AST.h
@@ -91,7 +91,7 @@ struct SyntaxLeafList final {
using ConstReference = const SyntaxLeaf&;
enum {
- kPlaceNone = 0,
+ kPlaceNone = 0,
kPlaceBefore = 100,
kPlaceAfter,
};