0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-23 01:58:24 +00:00

[qfcc] Solve the mysterious missing not

I'd goofed and made the identifier `NOT`. Oops.
This commit is contained in:
Bill Currie 2025-01-21 13:35:47 +09:00
parent 9e3e826338
commit 60faf7c4b2

View file

@ -996,7 +996,7 @@ notype_declarator
| NOT
{
$$ = $<spec>0;
$$.sym = new_symbol ("NOT");
$$.sym = new_symbol ("not");
}
;