| 140 | |
| 141 | |
| 142 | void proj_context_inherit (PJ *parent, PJ *child) { |
| 143 | if (nullptr==parent) |
| 144 | proj_assign_context (child, pj_get_default_ctx()); |
| 145 | else |
| 146 | proj_assign_context (child, pj_get_ctx(parent)); |
| 147 | } |
| 148 | |
| 149 | |
| 150 |
nothing calls this directly
no test coverage detected