Manually fixed performance-type-promotion-in-math-fn warnings

This commit is contained in:
Sean McBride 2023-12-16 22:36:39 -05:00
parent e1f22bc4ed
commit edcfc61fe6

View File

@ -1368,7 +1368,7 @@ main(int argc, char **argv)
for (i = 0; i < DIM_LEN_SIMPLE; i++)
{
if (fabs(float_data_in[i] - float_data[i]) > EPSILON)
if (fabsf(float_data_in[i] - float_data[i]) > EPSILON)
ERR;
if (fabs(double_data_in[i] - double_data[i]) > EPSILON)
ERR;