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:
parent
05d15e83da
commit
82b4581d2d
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue