Match bool c style

This commit is contained in:
Krzosa Karol
2023-04-16 15:30:08 +02:00
parent d4a7fc32c8
commit 4f658c0c09
12 changed files with 96 additions and 96 deletions

View File

@@ -370,7 +370,7 @@ Type_Info :: struct
kind: Type_Info_Kind
size: S64
align: S64
is_unsigned: Bool
is_unsigned: bool
type: Type
base_type: Type
@@ -414,7 +414,7 @@ GetTypeInfo :: (type: Type): *Type_Info
insert_builtin_type_into_scope(module, "F64"_s, pctx->type_f64);
insert_builtin_type_into_scope(module, "F32"_s, pctx->type_f32);
insert_builtin_type_into_scope(module, "void"_s, pctx->type_void);
insert_builtin_type_into_scope(module, "Bool"_s, pctx->type_bool);
insert_builtin_type_into_scope(module, "bool"_s, pctx->type_bool);
// insert_builtin_type_into_scope(module, "String"_s, pctx->type_string);
insert_builtin_type_into_scope(module, "Type"_s, pctx->type_type);
}