mirror of
https://github.com/Ed94/gencpp.git
synced 2025-06-15 03:01:47 -07:00
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:
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user