Skip to content

Commit

Permalink
Merge pull request #1126 from tresf/stable-1.1
Browse files Browse the repository at this point in the history
Win64 fix for missing _isnanf
  • Loading branch information
tobydox committed Sep 1, 2014
2 parents 81ca7b1 + 807d3af commit 5572cdd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/lmms_math.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
#ifndef isinff
#define isinff(x) isinf(x)
#endif
#ifndef _isnanf
#define _isnanf(x) isnan(x)
#endif
#ifndef _isinff
#define _isinff(x) isinf(x)
#endif
#endif

#ifdef __INTEL_COMPILER
Expand Down

0 comments on commit 5572cdd

Please sign in to comment.