diff options
| author | 2026-04-17 21:22:15 +0200 | |
|---|---|---|
| committer | 2026-04-17 21:22:15 +0200 | |
| commit | e9b132ef171114b0384ef30d6630db22d2b47e5d (patch) | |
| tree | a417666dd20c471b22b7976438476755589bb23d | |
| parent | 3cd04b7ea9e7d33ec6b50524f97ada82ecdfebbe (diff) | |
cpp: increment conditionals nesting limit
| -rw-r--r-- | src/c_lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c_lex.c b/src/c_lex.c index 970fac9..d1cbd55 100644 --- a/src/c_lex.c +++ b/src/c_lex.c @@ -1662,7 +1662,7 @@ static struct PPCond { int filedepth; uchar cnd; bool elsep; -} ppcndstk[32]; +} ppcndstk[64]; static int nppcnd; static int includedepth; |