Mercurial > hg > silvet
view constant-q-cpp/src/dsp/nan-inf.h @ 371:426ce52ef096
Warn only once
author | Chris Cannam |
---|---|
date | Sat, 12 Nov 2016 09:59:34 +0000 |
parents | 5d0a2ebb4d17 |
children |
line wrap: on
line source
#ifndef NAN_INF_H #define NAN_INF_H #define ISNAN(x) (sizeof(x) == sizeof(double) ? ISNANd(x) : ISNANf(x)) static inline int ISNANf(float x) { return x != x; } static inline int ISNANd(double x) { return x != x; } #define ISINF(x) (sizeof(x) == sizeof(double) ? ISINFd(x) : ISINFf(x)) static inline int ISINFf(float x) { return !ISNANf(x) && ISNANf(x - x); } static inline int ISINFd(double x) { return !ISNANd(x) && ISNANd(x - x); } #endif