Android buildfix.

This commit is contained in:
Unknown W. Brackets 2013-02-25 10:48:32 -08:00
parent c6da55a23d
commit d3a66d0a90

View File

@ -90,6 +90,9 @@ using std::isinf;
#define isnan _isnan
#define isinf(x) (!_finite(x) && !_isnan(x))
#endif
#ifdef ANDROID
using __captured::isinf;
#endif
// Preserves NaN in first param, takes sign of equal second param.
// Technically, std::max may do this but it's undefined.