Skip to content

Commit

Permalink
Cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Oct 30, 2024
1 parent b49350a commit 3951c5e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/clarirs_py/src/ast/fp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,12 @@ pub fn FPV(py: Python, value: f64, sort: PyFSort) -> Result<Py<FP>, ClaripyError
}

#[pyfunction]
pub fn fpFP(py: Python, sign: Bound<BV>, exponent: Bound<BV>, significand: Bound<BV>) -> Result<Py<FP>, ClaripyError> {
pub fn fpFP(
py: Python,
sign: Bound<BV>,
exponent: Bound<BV>,
significand: Bound<BV>,
) -> Result<Py<FP>, ClaripyError> {
todo!()
}

Expand Down

0 comments on commit 3951c5e

Please sign in to comment.