epezent / implot

Immediate Mode Plotting
MIT License
4.64k stars 516 forks source link

Explicitly promote float to double for `ImPlotPoint` #452

Closed glennsweeney closed 1 year ago

glennsweeney commented 1 year ago

GCC and Clang -Wdouble-promotion generates warnings for implicit promotion of float to double. This warning can be advantageous in some cases.

This PR adds an explicit cast to suppress the warning when enabled. There is no functionality change.