| 502 | //========================================================================== |
| 503 | |
| 504 | void PClass::DestroyMeta(void *addr) |
| 505 | { |
| 506 | if (ParentClass != nullptr) ParentClass->DestroyMeta(addr); |
| 507 | for (auto tao : MetaInits) |
| 508 | { |
| 509 | tao.first->DestroyValue((uint8_t *)addr + tao.second); |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | //========================================================================== |
| 514 | // |
no test coverage detected