1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Fixed a warning in juce_isfinite

This commit is contained in:
jules 2015-04-01 12:28:53 +01:00
parent 05d15e83da
commit 82b4581d2d

View file

@ -346,7 +346,7 @@ const float float_Pi = 3.14159265358979323846f;
platform-independent function for it.
*/
template <typename NumericType>
inline bool juce_isfinite (NumericType value) noexcept
inline bool juce_isfinite (NumericType) noexcept
{
return true; // Integer types are always finite
}