Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Unverified Commit 5e30534e authored by Andrew Brampton's avatar Andrew Brampton
Browse files

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.
parent 7559f748
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment