Skip to content

Commit

Permalink
Make CompilerOptions flags private again
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Jan 19, 2023
1 parent c1fec2f commit ff11cbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/cli/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ pub struct StoreOptions {
pub struct CompilerOptions {
/// Use Singlepass compiler.
#[clap(long, conflicts_with_all = &["cranelift", "llvm"])]
pub singlepass: bool,
singlepass: bool,

/// Use Cranelift compiler.
#[clap(long, conflicts_with_all = &["singlepass", "llvm"])]
pub cranelift: bool,
cranelift: bool,

/// Use LLVM compiler.
#[clap(long, conflicts_with_all = &["singlepass", "cranelift"])]
pub llvm: bool,
llvm: bool,

/// Enable compiler internal verification.
#[clap(long)]
Expand Down

0 comments on commit ff11cbd

Please sign in to comment.