diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-28 07:27:27 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-28 07:27:27 +0100 |
| commit | 2b770125c35f061e0da813dab91f42c96b1ac749 (patch) | |
| tree | f2539f45a472be6f29bee192a42976aed1298a26 /include/CompilerKit/CodeGenerator.h | |
| parent | 6a84782b5c574b7742f8fca7023556a8e4bce535 (diff) | |
chore: wip: including TProc and Boost for Nectar compiler frontend.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/CodeGenerator.h')
| -rw-r--r-- | include/CompilerKit/CodeGenerator.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/CompilerKit/CodeGenerator.h b/include/CompilerKit/CodeGenerator.h index f82441c..c19e978 100644 --- a/include/CompilerKit/CodeGenerator.h +++ b/include/CompilerKit/CodeGenerator.h @@ -81,7 +81,7 @@ union NumberCastBase { static constexpr auto kLimit = 1; - Char number[kLimit]; + char number[kLimit]; UInt64 raw; }; @@ -93,7 +93,7 @@ union NumberCast64 final { static constexpr auto kLimit = 8; - Char number[kLimit]; + char number[kLimit]; UInt64 raw; }; @@ -105,7 +105,7 @@ union NumberCast32 final { static constexpr auto kLimit = 4; - Char number[kLimit]; + char number[kLimit]; UInt32 raw; }; @@ -117,7 +117,7 @@ union NumberCast16 final { static constexpr auto kLimit = 2; - Char number[kLimit]; + char number[kLimit]; UInt16 raw; }; @@ -127,7 +127,7 @@ union NumberCast8 final { ~NumberCast8() { raw = 0; } - Char number; + char number; UInt8 raw; }; |
