| 61 | } |
| 62 | |
| 63 | char* VArenaAlloc::SkipPod(char* footerEnd) { |
| 64 | char* objEnd = footerEnd - (sizeof(Footer) + sizeof(int32_t)); |
| 65 | int32_t skip; |
| 66 | memmove(&skip, objEnd, sizeof(int32_t)); |
| 67 | return objEnd - skip; |
| 68 | } |
| 69 | |
| 70 | void VArenaAlloc::RunDtorsOnBlock(char* footerEnd) { |
| 71 | while (footerEnd != nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected