From 6da59e87a36f17601c402222905b3857e869cb99 Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 4 Oct 2021 10:01:07 +0100 Subject: [PATCH] Fix float_Pi deprecation warning typo --- modules/juce_core/maths/juce_MathsFunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/maths/juce_MathsFunctions.h b/modules/juce_core/maths/juce_MathsFunctions.h index e74e5487d1..f6f5829787 100644 --- a/modules/juce_core/maths/juce_MathsFunctions.h +++ b/modules/juce_core/maths/juce_MathsFunctions.h @@ -400,7 +400,7 @@ struct MathConstants const constexpr double double_Pi = MathConstants::pi; /** A single-precision constant for pi. */ -[[deprecated ("This is deprecated in favour of MathConstants::pi.")]] +[[deprecated ("This is deprecated in favour of MathConstants::pi.")]] const constexpr float float_Pi = MathConstants::pi; #endif