Skip to content

Commit

Permalink
fixed px
Browse files Browse the repository at this point in the history
  • Loading branch information
thermalogic committed Sep 4, 2023
1 parent 289f2b5 commit 2820a3b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/cdecl_c_if97.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ pub unsafe extern "C" fn px(p: f64, x: f64, o_id: i32) -> f64 {
match o_id {
OP => return p,
OX => return x,
OT => return px_reg4(p, x, o_id),
_ => return px_reg4(p, x, o_id),
}
}
Expand Down
1 change: 0 additions & 1 deletion src/python_if97.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ fn px(p: f64, x: f64, o_id: i32) -> f64 {
match o_id {
OP => return p,
OX => return x,
OT => return px_reg4(p, x, o_id),
_ => return px_reg4(p, x, o_id),
}
}
Expand Down
1 change: 0 additions & 1 deletion src/rust_if97.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ pub fn px(p: f64, x: f64, o_id: i32) -> f64 {
match o_id {
OP => return p,
OX => return x,
OT => return px_reg4(p, x, o_id),
_ => return px_reg4(p, x, o_id),
}
}
Expand Down
1 change: 0 additions & 1 deletion src/stdcall_c_if97.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ pub unsafe extern "stdcall" fn px(p: f64, x: f64, o_id: i32) -> f64 {
match o_id {
OP => return p,
OX => return x,
OT => return px_reg4(p, x, o_id),
_ => return px_reg4(p, x, o_id),
}
}
Expand Down

0 comments on commit 2820a3b

Please sign in to comment.