Move P to a new context - or to the default context if 0 is specified */
| 133 | |
| 134 | /* Move P to a new context - or to the default context if 0 is specified */ |
| 135 | void proj_context_set (PJ *P, PJ_CONTEXT *ctx) { |
| 136 | if (nullptr==ctx) |
| 137 | ctx = pj_get_default_ctx (); |
| 138 | proj_assign_context (P, ctx); |
| 139 | } |
| 140 | |
| 141 | |
| 142 | void proj_context_inherit (PJ *parent, PJ *child) { |
nothing calls this directly
no test coverage detected