mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 22:22:17 +00:00
Just fucking initialize everything
This commit is contained in:
parent
68ca2c4962
commit
aed2b1031c
1 changed files with 5 additions and 5 deletions
10
parser.c
10
parser.c
|
@ -5639,11 +5639,11 @@ skipvar:
|
|||
}
|
||||
|
||||
if (parser->tok == '#') {
|
||||
ast_function *func = NULL;
|
||||
ast_value *number = NULL;
|
||||
float fractional;
|
||||
float integral;
|
||||
int builtin_num;
|
||||
ast_function *func = NULL;
|
||||
ast_value *number = NULL;
|
||||
float fractional = 0;
|
||||
float integral = 0;
|
||||
int builtin_num = 0;
|
||||
|
||||
if (localblock) {
|
||||
parseerror(parser, "cannot declare builtins within functions");
|
||||
|
|
Loading…
Reference in a new issue