mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 16:35:01 +01:00
Correct compile error on Windows
This commit is contained in:
parent
c0289c65f7
commit
c6f3465807
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ fn wrap_func_body(func: &str) -> Result<String> {
|
|||
impl RustFunction {
|
||||
#[cfg(not(unix))]
|
||||
pub fn compile(body: &str) -> Result<Self> {
|
||||
Err(anyhow::anyhow!("--verify-fn only works on unix"));
|
||||
Err(anyhow::anyhow!("--verify-fn only works on unix"))
|
||||
}
|
||||
|
||||
#[cfg(unix)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue