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/gauss.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/gauss.cpp')
| -rw-r--r-- | src/gauss.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gauss.cpp b/src/gauss.cpp index a34a8f5b..54dff5a8 100644 --- a/src/gauss.cpp +++ b/src/gauss.cpp @@ -81,7 +81,7 @@ void *pj_gauss_ini(double e, double phi0, double *chi, double *rc) { return ((void *)en); } -PJ_LP pj_gauss(projCtx ctx, PJ_LP elp, const void *data) { +PJ_LP pj_gauss(PJ_CONTEXT *ctx, PJ_LP elp, const void *data) { const struct GAUSS *en = (const struct GAUSS *)data; PJ_LP slp; (void) ctx; @@ -93,7 +93,7 @@ PJ_LP pj_gauss(projCtx ctx, PJ_LP elp, const void *data) { return(slp); } -PJ_LP pj_inv_gauss(projCtx ctx, PJ_LP slp, const void *data) { +PJ_LP pj_inv_gauss(PJ_CONTEXT *ctx, PJ_LP slp, const void *data) { const struct GAUSS *en = (const struct GAUSS *)data; PJ_LP elp; double num; |
