began to setup generation of Array_ssize and StringTable in the c-library

Still need to confirm if the these old templates require updates compared to the c++ impl
This commit is contained in:
2024-12-05 03:41:08 -05:00
parent 1c3134218e
commit 47b9c37e94
3 changed files with 33 additions and 8 deletions

View File

@ -4957,6 +4957,13 @@ CodeTypedef parse_typedef()
Context.Scope->Name = name;
eat( Tok_Preprocess_Macro );
// <ModuleFalgs> typedef <Preprocessed_Macro>
if ( currtok.Type == Tok_Identifier )
{
type = untyped_str({ name.Length, name.Text });
name = currtok;
eat(Tok_Identifier);
}
}
else
{