From c7a684d16808f0062284a0737503451894be4ce9 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 2 Nov 2018 19:09:57 -0400 Subject: parse: Add support for -D all to enable all debug flags --- cmdline.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmdline.h') diff --git a/cmdline.h b/cmdline.h index df49dd6..78e1f9a 100644 --- a/cmdline.h +++ b/cmdline.h @@ -37,6 +37,8 @@ enum debug_flags { DEBUG_STAT = 1 << 5, /** Print the parse tree. */ DEBUG_TREE = 1 << 6, + /** All debug flags. */ + DEBUG_ALL = (1 << 7) - 1, }; /** -- cgit v1.2.3