| 879 | // --------------------------------------------------------------------------- |
| 880 | |
| 881 | static PJ *pj_gridshift_destructor(PJ *P, int errlev) { |
| 882 | if (nullptr == P) |
| 883 | return nullptr; |
| 884 | |
| 885 | delete static_cast<struct gridshiftData *>(P->opaque); |
| 886 | P->opaque = nullptr; |
| 887 | |
| 888 | return pj_default_destructor(P, errlev); |
| 889 | } |
| 890 | |
| 891 | // --------------------------------------------------------------------------- |
| 892 |
no test coverage detected