| 174 | } |
| 175 | |
| 176 | static inline PJ_COORD error_or_coord(PJ *P, PJ_COORD coord, int last_errno) { |
| 177 | if (P->ctx->last_errno) |
| 178 | return proj_coord_error(); |
| 179 | |
| 180 | P->ctx->last_errno = last_errno; |
| 181 | |
| 182 | return coord; |
| 183 | } |
| 184 | |
| 185 | PJ_XY pj_fwd(PJ_LP lp, PJ *P) { |
| 186 | PJ_COORD coo = {{0, 0, 0, 0}}; |
no test coverage detected