Fixed multiple cases where a float was being implicity converted to a double.
The fixes are mostly in the form of changing `double x = 0.0f` to `double x = 0.0`, thus dropping the f. `0.0` is a double, but `0.0f` is a float.
Showing
- library/src/math/polynomial.c 1 addition, 1 deletionlibrary/src/math/polynomial.c
- library/src/math/quaternion.c 1 addition, 1 deletionlibrary/src/math/quaternion.c
- library/src/math/ring_buffer.c 7 additions, 7 deletionslibrary/src/math/ring_buffer.c
- library/src/math/vector.c 12 additions, 12 deletionslibrary/src/math/vector.c
Please register or sign in to comment