From ff11cbd7059c0b138067cefb644713b584e1777c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=BCtt?= Date: Thu, 19 Jan 2023 19:59:03 +0100 Subject: [PATCH] Make CompilerOptions flags private again --- lib/cli/src/store.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/cli/src/store.rs b/lib/cli/src/store.rs index 1d2c55904cb..49b897c7bc3 100644 --- a/lib/cli/src/store.rs +++ b/lib/cli/src/store.rs @@ -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)]