From ad4df20dd62efe6db4993861cba2268bd3921c1a Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 14 Sep 2021 07:11:33 -0400 Subject: [PATCH] [style] Fix float conversion warning --- src/hb-style.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-style.cc b/src/hb-style.cc index 35871dead..9345c24a3 100644 --- a/src/hb-style.cc +++ b/src/hb-style.cc @@ -49,13 +49,13 @@ static inline float _hb_angle_to_ratio (float a) { - return tanf (a * (M_PI / 180.f)); + return tanf (a * float (M_PI / 180.)); } #if 0 static inline float _hb_ratio_to_angle (float r) { - return atanf (r) * (180.f / M_PI); + return atanf (r) * float (180. / M_PI); } #endif