aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-08 00:10:01 -0800
committerFuwn <[email protected]>2025-06-09 00:46:12 -0700
commit435008cbc9595c58846b47500f7af975d6f32379 (patch)
tree856e0e15f773d538213f9061f603611582aa7d1d
parentrefactor(divina): return clone of config by default (diff)
downloadarchived-divina-435008cbc9595c58846b47500f7af975d6f32379.tar.xz
archived-divina-435008cbc9595c58846b47500f7af975d6f32379.zip
fix(divina_compile): allow unused struct member(unix)
-rw-r--r--crates/divina_compile/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/divina_compile/src/lib.rs b/crates/divina_compile/src/lib.rs
index 3875915..4a94539 100644
--- a/crates/divina_compile/src/lib.rs
+++ b/crates/divina_compile/src/lib.rs
@@ -33,6 +33,7 @@ struct Package {
sources: Vec<Source>,
arch: Arch,
compiler: String,
+ #[allow(unused)]
visual_studio: Option<String>,
}