mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[util] Enable parser debugging for cexpr
Not actually turned on in the code, but cexpr_yydebug is present.
This commit is contained in:
parent
dfa7af03c6
commit
8664a5b969
2 changed files with 3 additions and 0 deletions
|
@ -50,6 +50,8 @@
|
|||
#include "QF/qfplist.h"
|
||||
#include "QF/sys.h"
|
||||
|
||||
#define CEXPR_YYDEBUG 1
|
||||
|
||||
#include "QF/cexpr.h"
|
||||
#include "libs/util/cexpr-parse.h"
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
%define api.prefix {cexpr_yy}
|
||||
%define api.pure full
|
||||
%define api.push-pull push
|
||||
%define parse.trace
|
||||
%parse-param {void *scanner} {exprctx_t *context}
|
||||
|
||||
%{
|
||||
|
|
Loading…
Reference in a new issue