From 2b770125c35f061e0da813dab91f42c96b1ac749 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 28 Feb 2026 07:27:27 +0100 Subject: chore: wip: including TProc and Boost for Nectar compiler frontend. Signed-off-by: Amlal El Mahrouss --- include/CompilerKit/CodeGenerator.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/CompilerKit/CodeGenerator.h') 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; }; -- cgit v1.2.3