mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-30 15:41:12 +00:00
static operator_count
This commit is contained in:
parent
f78ed233c0
commit
439aef8c33
1 changed files with 1 additions and 1 deletions
2
lexer.h
2
lexer.h
|
@ -184,7 +184,7 @@ static const oper_info operators[] = {
|
||||||
{ "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 },
|
{ "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 },
|
||||||
{ "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 },
|
{ "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 },
|
||||||
};
|
};
|
||||||
const size_t operator_count = (sizeof(operators) / sizeof(operators[0]));
|
static const size_t operator_count = (sizeof(operators) / sizeof(operators[0]));
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue