diff options
| author | snowman2 <alansnow21@gmail.com> | 2021-10-18 19:15:05 -0500 |
|---|---|---|
| committer | snowman2 <alansnow21@gmail.com> | 2021-10-19 07:55:55 -0500 |
| commit | 4c8415dafee0859a506c663b888015644daabddf (patch) | |
| tree | 97b9fc860db3362b15ebde53a167283f47dc2154 /src/proj.h | |
| parent | 8671b8e7ff07197167b666bd490f42411274bd81 (diff) | |
| download | PROJ-4c8415dafee0859a506c663b888015644daabddf.tar.gz PROJ-4c8415dafee0859a506c663b888015644daabddf.zip | |
TYPE: Update const declarations in proj_trans_bounds
Diffstat (limited to 'src/proj.h')
| -rw-r--r-- | src/proj.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -604,10 +604,10 @@ int PROJ_DLL proj_trans_bounds( PJ_CONTEXT* context, PJ *P, PJ_DIRECTION direction, - const double xmin, - const double ymin, - const double xmax, - const double ymax, + double xmin, + double ymin, + double xmax, + double ymax, double* out_xmin, double* out_ymin, double* out_xmax, |
