MCPcopy Create free account
hub / github.com/Kitware/VTK / destructor

Function destructor

ThirdParty/libproj/vtklibproj/src/transformations/tinshift.cpp:52–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50} // namespace
51
52static PJ *destructor(PJ *P, int errlev) {
53 if (nullptr == P)
54 return nullptr;
55
56 auto Q = static_cast<struct tinshiftData *>(P->opaque);
57 delete Q;
58 P->opaque = nullptr;
59
60 return pj_default_destructor(P, errlev);
61}
62
63static PJ_COORD tinshift_forward_4d(PJ_COORD in, PJ *P) {
64 auto *Q = (struct tinshiftData *)P->opaque;

Callers 1

tinshift.cppFile · 0.70

Calls 1

pj_default_destructorFunction · 0.85

Tested by

no test coverage detected