Skip to content

Commit b0cc303

Browse files
committed
catch_all_fingerprint
1 parent 1d27233 commit b0cc303

File tree

1 file changed

+12
-0
lines changed
  • lib/bencher_context/src/client/platform

1 file changed

+12
-0
lines changed

lib/bencher_context/src/client/platform/mod.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ impl fmt::Display for Fingerprint {
1313
}
1414
}
1515

16+
#[cfg(all(
17+
not(target_os = "linux"),
18+
not(target_os = "macos"),
19+
not(target_os = "windows")
20+
))]
21+
impl Fingerprint {
22+
#[allow(clippy::unnecessary_wraps)]
23+
pub fn current() -> Option<Self> {
24+
None
25+
}
26+
}
27+
1628
#[allow(dead_code)]
1729
#[derive(Debug, Clone, Copy)]
1830
pub enum OperatingSystem {

0 commit comments

Comments
 (0)