aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorCharles Karney <charles.karney@sri.com>2019-09-18 14:25:15 -0400
committerCharles Karney <charles.karney@sri.com>2019-09-18 14:25:15 -0400
commit646da7bf3868090ec8ac2d05ab63781de86be64b (patch)
treef81f4da4ac56d65e57cade596d462253e2b21217 /CMakeLists.txt
parent329e7a9be67c15936488ef37739df065a4b81bf7 (diff)
downloadPROJ-646da7bf3868090ec8ac2d05ab63781de86be64b.tar.gz
PROJ-646da7bf3868090ec8ac2d05ab63781de86be64b.zip
math.cpp removed since its isnan isn't used. Keep proj_math.h (which
just includes math.h and limits.h) since it's included in a score of places.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5b8459b6..5f463078 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -141,7 +141,7 @@ int main() {
int q;
return (int)(hypot(3.0, 4.0) + atanh(0.8) + copysign(1.0, -0.0) +
cbrt(8.0) + remainder(100.0, 90.0) +
- remquo(100.0, 90.0, &q)) + isnan(0.0);
+ remquo(100.0, 90.0, &q));
}
" C99_MATH)
if(C99_MATH)