Skip to content

Commit

Permalink
chore: remove short flags for --show-ssa and --deny-warnings (#2141)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Aug 3, 2023
1 parent 8e976ea commit de072ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/noirc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub use program::CompiledProgram;
#[derive(Args, Clone, Debug, Default, Serialize, Deserialize)]
pub struct CompileOptions {
/// Emit debug information for the intermediate SSA IR
#[arg(short, long)]
#[arg(long)]
pub show_ssa: bool,

#[arg(long)]
Expand All @@ -36,7 +36,7 @@ pub struct CompileOptions {
pub print_acir: bool,

/// Treat all warnings as errors
#[arg(short, long)]
#[arg(long)]
pub deny_warnings: bool,
}

Expand Down

0 comments on commit de072ae

Please sign in to comment.