From 82b4581d2da1a9b9342bed509059fe8dcd681c22 Mon Sep 17 00:00:00 2001 From: jules Date: Wed, 1 Apr 2015 12:28:53 +0100 Subject: [PATCH] Fixed a warning in juce_isfinite --- 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 a4068a8949..bf13551a78 100644 --- a/modules/juce_core/maths/juce_MathsFunctions.h +++ b/modules/juce_core/maths/juce_MathsFunctions.h @@ -346,7 +346,7 @@ const float float_Pi = 3.14159265358979323846f; platform-independent function for it. */ template -inline bool juce_isfinite (NumericType value) noexcept +inline bool juce_isfinite (NumericType) noexcept { return true; // Integer types are always finite }