From 7ff045583db7220c6bc3adf729192c8f671ff453 Mon Sep 17 00:00:00 2001 From: Ryan Lee Date: Tue, 10 Sep 2024 10:28:26 -0700 Subject: [PATCH] Remove manual YYDEBUG define in grammar.y The generated grammar.h already sets the correct YYDEBUG value regardless of whether parse.trace is defined Signed-off-by: Ryan Lee --- libraries/libapparmor/src/grammar.y | 8 -------- 1 file changed, 8 deletions(-) diff --git a/libraries/libapparmor/src/grammar.y b/libraries/libapparmor/src/grammar.y index 23f746169..0adde6fc0 100644 --- a/libraries/libapparmor/src/grammar.y +++ b/libraries/libapparmor/src/grammar.y @@ -24,14 +24,6 @@ %{ -/* set the following to non-zero to get bison to emit debugging - * information about tokens given and rules matched. - * Also: - * Uncomment the %defines - * parse.error - * parse.trace - */ -#define YYDEBUG 0 #include #include #include "parser.h"