Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buffa/src/json_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ where
/// Returns `true` if `f` has no fractional part (i.e. it is an exact integer).
///
/// Avoids `f64::trunc()` because it was only moved to `core` in Rust 1.86
/// and we support MSRV 1.81. Instead, casts to `i128` and back — if the
/// and we support MSRV 1.85. Instead, casts to `i128` and back — if the
/// round-trip preserves the value, `f` has no fractional part. Values outside
/// i128 range saturate, producing a mismatch that correctly returns `false`.
fn is_exact_integer(f: f64) -> bool {
Expand Down
Loading