diff options
| author | Thomas Knudsen <thokn@sdfe.dk> | 2017-10-06 22:01:23 +0200 |
|---|---|---|
| committer | Thomas Knudsen <thokn@sdfe.dk> | 2017-10-06 22:01:23 +0200 |
| commit | 03123018ea7090b992430ce8dd4fa6980f04d0d3 (patch) | |
| tree | 5716a9475bca96c7d59870eb1673ed2aade87ab3 /src/pj_inv3d.c | |
| parent | 8045ecfaaf8943663132ce1eb8673fff636d2ce5 (diff) | |
| download | PROJ-03123018ea7090b992430ce8dd4fa6980f04d0d3.tar.gz PROJ-03123018ea7090b992430ce8dd4fa6980f04d0d3.zip | |
Remove superfluous checks for PJ.left being PJ_IO_UNITS_CLASSIC
Diffstat (limited to 'src/pj_inv3d.c')
| -rw-r--r-- | src/pj_inv3d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pj_inv3d.c b/src/pj_inv3d.c index a01cfa7e..53e39a76 100644 --- a/src/pj_inv3d.c +++ b/src/pj_inv3d.c @@ -42,7 +42,7 @@ LPZ pj_inv3d (XYZ xyz, PJ *P) { if (P->ctx->last_errno) return err; - if ((P->left==PJ_IO_UNITS_CLASSIC)||(P->left==PJ_IO_UNITS_RADIANS)) { + if (P->left==PJ_IO_UNITS_RADIANS) { /* reduce from del lp.lam */ lpz.lam += P->lam0; |
