X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=parser.h;h=43ebe6f0b0e3902c3173e666922a88039abdf0ad;hp=0a303e0e220055c11e4247d6e763b434cbd5d551;hb=67a3c9b0310b915baace7a81cce1d8faa3994f20;hpb=d4deaa35caf9e9d1571faf5541c2e12e101b544f diff --git a/parser.h b/parser.h index 0a303e0..43ebe6f 100644 --- a/parser.h +++ b/parser.h @@ -58,10 +58,10 @@ struct parser_s { /* All the labels the function defined... * Should they be in ast_function instead? */ - ast_label **labels; - ast_goto **gotos; - const char **breaks; - const char **continues; + std::vector labels; + std::vector gotos; + std::vector breaks; + std::vector continues; /* A list of hashtables for each scope */ ht *variables;