diff options
| author | Charles Karney <charles.karney@sri.com> | 2019-09-18 16:29:35 -0400 |
|---|---|---|
| committer | Charles Karney <charles.karney@sri.com> | 2019-09-18 16:29:35 -0400 |
| commit | aa215ceeaaf6e5120f0eb2d28887471a8d819f10 (patch) | |
| tree | 965b33e43f42ec7a624d185183f443bd511df559 /src/conversions | |
| parent | 646da7bf3868090ec8ac2d05ab63781de86be64b (diff) | |
| download | PROJ-aa215ceeaaf6e5120f0eb2d28887471a8d819f10.tar.gz PROJ-aa215ceeaaf6e5120f0eb2d28887471a8d819f10.zip | |
Delete proj_math.h. Replace includes by <math.h>; we'll see if anyone
needs <limits.h>. Update scripts/reference_exported_symbols.txt and
src/proj_symbol_rename.h.
Diffstat (limited to 'src/conversions')
| -rw-r--r-- | src/conversions/cart.cpp | 2 | ||||
| -rw-r--r-- | src/conversions/unitconvert.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/conversions/cart.cpp b/src/conversions/cart.cpp index c1f6f09d..a7817443 100644 --- a/src/conversions/cart.cpp +++ b/src/conversions/cart.cpp @@ -43,7 +43,7 @@ #define PJ_LIB__ #include "proj_internal.h" -#include "proj_math.h" +#include <math.h> PROJ_HEAD(cart, "Geodetic/cartesian conversions"); diff --git a/src/conversions/unitconvert.cpp b/src/conversions/unitconvert.cpp index 7ef07311..377f384e 100644 --- a/src/conversions/unitconvert.cpp +++ b/src/conversions/unitconvert.cpp @@ -71,7 +71,7 @@ Last update: 2017-05-16 #include <time.h> #include "proj_internal.h" -#include "proj_math.h" +#include <math.h> PROJ_HEAD(unitconvert, "Unit conversion"); |
