mirror of
https://github.com/Ed94/gencpp.git
synced 2025-07-05 21:25:44 -07:00
More refactoring, getting rid of meson in favor of just powershell scripts
This commit is contained in:
@ -1409,7 +1409,7 @@ CodeAttributes parse_attributes()
|
||||
using namespace Parser;
|
||||
push_scope();
|
||||
|
||||
Token start;
|
||||
Token start = NullToken;
|
||||
s32 len = 0;
|
||||
|
||||
if ( check(TokType::Attribute_Open) )
|
||||
@ -3186,7 +3186,7 @@ CodeConstructor parse_constructor()
|
||||
{
|
||||
eat( TokType::Assign_Classifer );
|
||||
|
||||
Token initializer_list_tok;
|
||||
Token initializer_list_tok = NullToken;
|
||||
|
||||
s32 level = 0;
|
||||
while ( left && ( currtok.Type != TokType::BraceCurly_Open || level > 0 ) )
|
||||
|
Reference in New Issue
Block a user