When using integer values such as in this example:
auto t = tweeny::from(130).to(130).during(300).to(80).during(400);
The compiler issues warnings for the conversion from int to float for all the different easings, sometimes multiple warnings per easing. I don't want to disable the warnings, because they may be valuable information pointing out where a possible bug exists.
It would be nice if a static_cast<float>() is used where appropriate, so that my warnings list is not flooded.