From 268e9a79605756e4b76e0a43b280a167c267f8ba Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Wed, 9 Oct 2013 13:41:02 +0000 Subject: [PATCH] avoid warning in parser.c when debugging is OFF --- src/runtime/c/pgf/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/c/pgf/parser.c b/src/runtime/c/pgf/parser.c index 476dda827..f51befec8 100644 --- a/src/runtime/c/pgf/parser.c +++ b/src/runtime/c/pgf/parser.c @@ -241,6 +241,7 @@ pgf_extern_syms_get(PgfItem* item, GuPool* pool) return syms; } +#ifdef PGF_PARSER_DEBUG static void pgf_item_symbols(PgfItem* item, size_t* lin_idx, PgfSymbols** syms, @@ -281,7 +282,6 @@ pgf_item_symbols(PgfItem* item, } } -#ifdef PGF_PARSER_DEBUG static void pgf_print_production_args(PgfPArgs* args, GuOut* out, GuExn* err)