mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
Revert "Just fucking initialize everything"
This reverts commit aed2b1031c
.
This commit is contained in:
parent
b9fb29d740
commit
35692c0b57
1 changed files with 5 additions and 5 deletions
6
parser.c
6
parser.c
|
@ -5641,9 +5641,9 @@ skipvar:
|
|||
if (parser->tok == '#') {
|
||||
ast_function *func = NULL;
|
||||
ast_value *number = NULL;
|
||||
float fractional = 0;
|
||||
float integral = 0;
|
||||
int builtin_num = 0;
|
||||
float fractional;
|
||||
float integral;
|
||||
int builtin_num;
|
||||
|
||||
if (localblock) {
|
||||
parseerror(parser, "cannot declare builtins within functions");
|
||||
|
|
Loading…
Reference in a new issue