Allow string literals for [N]byte

This commit is contained in:
gingerBill
2020-11-20 16:01:59 +00:00
parent 87956676f5
commit 6416a6f39c
6 changed files with 34 additions and 7 deletions
+2 -2
View File
@@ -646,7 +646,7 @@ struct AstCommonStuff {
u16 viral_state_flags;
AstFile * file;
Scope * scope;
TypeAndValue tav;
TypeAndValue tav; // TODO(bill): Make this a pointer to minimize pointer size
};
struct Ast {
@@ -655,7 +655,7 @@ struct Ast {
u16 viral_state_flags;
AstFile * file;
Scope * scope;
TypeAndValue tav;
TypeAndValue tav; // TODO(bill): Make this a pointer to minimize pointer size
// IMPORTANT NOTE(bill): This must be at the end since the AST is allocated to be size of the variant
union {