Skip to content

Commit

Permalink
remove unnecesary parentheses
Browse files Browse the repository at this point in the history
To get rid of a compiler warning
  • Loading branch information
Be-ing committed Feb 15, 2022
1 parent 59213db commit 9d657cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loaders/freetype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,7 @@ impl FtFixedToF32 for RectI {
type Output = RectF;
#[inline]
fn ft_fixed_26_6_to_f32(self) -> RectF {
(self.to_f32() * (1.0 / 64.0))
self.to_f32() * (1.0 / 64.0)
}
}

Expand Down

0 comments on commit 9d657cc

Please sign in to comment.