From a47d791ff8f0db043352daf1c6e755e803c672bd Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Sun, 18 May 2025 11:43:16 -0400 Subject: [PATCH] Comment out debugPrint --- src/parser3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser3.h b/src/parser3.h index c7dc539..570399f 100644 --- a/src/parser3.h +++ b/src/parser3.h @@ -802,7 +802,7 @@ inline Status Parser3::keepGoing(Parser3 *self) { if (self->len() == 0 && !self->complete) { return S_AGAIN; } - self->debugPrint(); + // self->debugPrint(); MUSTTAIL return symbolTables.continuations[self->top()](self); }