fix unused import

This commit is contained in:
Folkert 2023-01-10 18:54:38 +01:00
parent 867067dfaf
commit 546a3dd0c4
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -1,10 +1,9 @@
#![cfg(test)]
use indoc::indoc;
use std::sync::Once;
#[cfg(target_os = "linux")]
static BUILD_ONCE: Once = Once::new();
static BUILD_ONCE: std::sync::Once = std::sync::Once::new();
#[cfg(all(target_os = "linux"))]
fn build_host() {