1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix float_Pi deprecation warning typo

This commit is contained in:
ed 2021-10-04 10:01:07 +01:00
parent 462c3a8dd4
commit 6da59e87a3

View file

@ -400,7 +400,7 @@ struct MathConstants
const constexpr double double_Pi = MathConstants<double>::pi;
/** A single-precision constant for pi. */
[[deprecated ("This is deprecated in favour of MathConstants<double>::pi.")]]
[[deprecated ("This is deprecated in favour of MathConstants<float>::pi.")]]
const constexpr float float_Pi = MathConstants<float>::pi;
#endif