From aa47e20faf00a64a73cf049c449aa39f020fa6a7 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 10 Mar 2026 17:42:17 +0100 Subject: Compiler flags must be long --- oryxc/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'oryxc/src') diff --git a/oryxc/src/main.rs b/oryxc/src/main.rs index 62bc743..e3523bd 100644 --- a/oryxc/src/main.rs +++ b/oryxc/src/main.rs @@ -30,10 +30,10 @@ pub struct Flags { #[derive(Parser)] struct Args { - #[arg(short = 'l', long)] + #[arg(long)] debug_lexer: bool, - #[arg(short = 'p', long)] + #[arg(long)] debug_parser: bool, #[arg(short = 's', long, default_value = "standard")] @@ -79,7 +79,7 @@ fn main() { fn usage() -> String { format!( concat!( - "Usage: {0} [-lp] [-s oneline|standard] [-t threads]\n", + "Usage: {0} [-s oneline|standard] [-t threads]\n", " {0} -h", ), errors::progname().display() -- cgit v1.2.3