diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-11-02 19:09:57 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2018-11-02 19:09:57 -0400 |
commit | c7a684d16808f0062284a0737503451894be4ce9 (patch) | |
tree | 8e5fd46827f8d020aa1dd023e199d591a18012f3 /cmdline.h | |
parent | 780a3ed08f22d45022e79b0a28b2b939e4f17f8f (diff) | |
download | bfs-c7a684d16808f0062284a0737503451894be4ce9.tar.xz |
parse: Add support for -D all to enable all debug flags
Diffstat (limited to 'cmdline.h')
-rw-r--r-- | cmdline.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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, }; /** |