[style] Fix float conversion warning
This commit is contained in:
parent
c5cc23a9b5
commit
ad4df20dd6
|
@ -49,13 +49,13 @@
|
||||||
static inline float
|
static inline float
|
||||||
_hb_angle_to_ratio (float a)
|
_hb_angle_to_ratio (float a)
|
||||||
{
|
{
|
||||||
return tanf (a * (M_PI / 180.f));
|
return tanf (a * float (M_PI / 180.));
|
||||||
}
|
}
|
||||||
#if 0
|
#if 0
|
||||||
static inline float
|
static inline float
|
||||||
_hb_ratio_to_angle (float r)
|
_hb_ratio_to_angle (float r)
|
||||||
{
|
{
|
||||||
return atanf (r) * (180.f / M_PI);
|
return atanf (r) * float (180. / M_PI);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue