Everywhere: Remove uneeded short option argument where possible

This commit is contained in:
Shannon Booth 2024-04-21 08:34:56 +12:00 committed by Andreas Kling
commit 1ec6399c00
Notes: sideshowbarker 2024-07-17 18:46:30 +09:00
21 changed files with 41 additions and 41 deletions

View file

@ -117,7 +117,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
args_parser.add_option(passes_to_dump_cfg, "Dump CFG after specified passes.", "dump-cfg", 0, "{all|last|<pass-name>|-<pass-name>[,...]}");
bool silence_diagnostics = false;
args_parser.add_option(silence_diagnostics, "Silence all diagnostics.", "silence-diagnostics", 0);
args_parser.add_option(silence_diagnostics, "Silence all diagnostics.", "silence-diagnostics");
args_parser.parse(arguments);