Kazade / kazmath

A C math library targeted at games
Other
527 stars 94 forks source link

Replace abs -> fabsf #50

Closed t-mw closed 4 years ago

t-mw commented 7 years ago

Clang complains:

aabb3.c:111:16: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value]

It looks like the intention there is to use fabsf instead?