diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2020-11-14 22:55:31 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2020-11-20 16:40:40 +0100 |
| commit | aa46197d66ce70ece382bf955326c46b13f35864 (patch) | |
| tree | e5d8335af87de784ce93c9e686f5ff323ff27936 /src/aasincos.cpp | |
| parent | e2dd223c5601b387cd622b88583e857b03e9fade (diff) | |
| download | PROJ-aa46197d66ce70ece382bf955326c46b13f35864.tar.gz PROJ-aa46197d66ce70ece382bf955326c46b13f35864.zip | |
Weed out proj_api.h datatypes and replace them with their proj.h counterparts
Diffstat (limited to 'src/aasincos.cpp')
| -rw-r--r-- | src/aasincos.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aasincos.cpp b/src/aasincos.cpp index 398a8cfc..c3229d39 100644 --- a/src/aasincos.cpp +++ b/src/aasincos.cpp @@ -9,7 +9,7 @@ #define ATOL 1e-50 double -aasin(projCtx ctx,double v) { +aasin(PJ_CONTEXT *ctx,double v) { double av; if ((av = fabs(v)) >= 1.) { @@ -21,7 +21,7 @@ aasin(projCtx ctx,double v) { } double -aacos(projCtx ctx, double v) { +aacos(PJ_CONTEXT *ctx, double v) { double av; if ((av = fabs(v)) >= 1.) { |
