Skip to content

Commit

Permalink
Merge pull request #7 from MarshalX/fix-pdep-speed-return-type
Browse files Browse the repository at this point in the history
Fix pdep_speed return type for non x86 arch
  • Loading branch information
as-com committed Mar 8, 2024
2 parents 601f307 + dabd40a commit 55ab8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fn pdep_speed() -> PdepPerf {
}

#[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
fn pdep_speed() -> bool {
fn pdep_speed() -> PdepPerf {
PdepPerf::Slow
}

Expand Down

0 comments on commit 55ab8f6

Please sign in to comment.