diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2017-09-21 21:18:59 +0200 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2017-09-21 21:36:15 +0200 |
| commit | dd12554da8979e47be1eb1b8654c980865da654d (patch) | |
| tree | 6403326e9a99844502499d107b82124e2e683359 /src/proj.h | |
| parent | 33175ead05bf03853ab8a33372602160cf69d745 (diff) | |
| download | PROJ-dd12554da8979e47be1eb1b8654c980865da654d.tar.gz PROJ-dd12554da8979e47be1eb1b8654c980865da654d.zip | |
Changed a few occurences of 'const PJ*' to just 'PJ*' since they were making promises that couldn't be kept
Diffstat (limited to 'src/proj.h')
| -rw-r--r-- | src/proj.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -400,12 +400,12 @@ int proj_errno_reset (PJ *P); void proj_errno_restore (PJ *P, int err); -PJ_DERIVS proj_derivatives(const PJ *P, const LP lp); -PJ_FACTORS proj_factors(const PJ *P, const LP lp); +PJ_DERIVS proj_derivatives(PJ *P, const LP lp); +PJ_FACTORS proj_factors(PJ *P, const LP lp); /* Info functions - get information about various PROJ.4 entities */ PJ_INFO proj_info(void); -PJ_PROJ_INFO proj_pj_info(const PJ *P); +PJ_PROJ_INFO proj_pj_info(PJ *P); PJ_GRID_INFO proj_grid_info(const char *gridname); PJ_INIT_INFO proj_init_info(const char *initname); |
