Skip to content

Commit

Permalink
clippy allow
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Oct 1, 2024
1 parent 9a84423 commit 8a2d332
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/compilers/src/compilers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ pub(crate) fn cache_version(
args: &Vec<String>,
f: impl FnOnce(&Path) -> Result<Version>,
) -> Result<Version> {
#[allow(clippy::complexity)]
static VERSION_CACHE: OnceLock<Mutex<HashMap<PathBuf, HashMap<Vec<String>, Version>>>> =
OnceLock::new();
let mut lock = VERSION_CACHE
Expand Down

0 comments on commit 8a2d332

Please sign in to comment.