conditional compilation fix

This commit is contained in:
Folkert 2022-12-29 16:14:40 +01:00
parent aca8d98ad9
commit 6e2e5600df
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -62,6 +62,11 @@ pub fn host_tempfile() -> std::io::Result<NamedTempFile> {
{
host_windows_tempfile()
}
#[cfg(not(any(windows, unix)))]
{
unreachable!()
}
}
#[derive(Debug, Default, Copy, Clone)]