diff options
| author | Pjotr Prins | 2020-05-22 11:21:45 -0500 |
|---|---|---|
| committer | Pjotr Prins | 2020-05-22 11:21:45 -0500 |
| commit | f1cd914e6f20c9a162e16d7283477c1b98d005d1 (patch) | |
| tree | 0a23068f9b06525ded025450c209b3a1dcf94b38 /src/mathfunc.h | |
| parent | 862ace03212ed17bdc1ab349bfab55543720a980 (diff) | |
| parent | b309569fe9497befa008ac2d2cbc04f2e861ce76 (diff) | |
| download | pangemma-f1cd914e6f20c9a162e16d7283477c1b98d005d1.tar.gz | |
Merge branch 'master' of github.com:genenetwork/GEMMA
Diffstat (limited to 'src/mathfunc.h')
| -rw-r--r-- | src/mathfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mathfunc.h b/src/mathfunc.h index e786e87..641d0a3 100644 --- a/src/mathfunc.h +++ b/src/mathfunc.h @@ -31,7 +31,7 @@ using namespace std; inline bool is_nan(double f) { - return (std::isnan(f)); + return (isnan(f)); } #define is_inf(d) gsl_isinf(d) |
