mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-20 02:12:31 +00:00
Indentation
This commit is contained in:
parent
b9050b6637
commit
76a6ad2d96
1 changed files with 49 additions and 48 deletions
3
parse.c
3
parse.c
|
@ -323,8 +323,9 @@ int parse_tree(struct lex_file *file) {
|
|||
if (token == '.') { \
|
||||
compile_calc_d = 1; \
|
||||
} \
|
||||
if (!isdigit(token) && !compile_calc_d && token != '+' && token != '-') \
|
||||
if (!isdigit(token) && !compile_calc_d && token != '+' && token != '-') { \
|
||||
error(ERROR_PARSE,"%s:%d Invalid constant initializer element %c for vector, must be numeric\n", file->name, file->line, NAME); \
|
||||
} \
|
||||
if (token == '+') { \
|
||||
compile_calc_s = '+'; \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue