| 39 | #endif |
| 40 | |
| 41 | CompressedVectorSectionHeader::CompressedVectorSectionHeader() |
| 42 | { |
| 43 | // Double check that header is correct length. Watch out for RTTI increasing the size. |
| 44 | static_assert( sizeof( CompressedVectorSectionHeader ) == 32, |
| 45 | "Unexpected size of CompressedVectorSectionHeader" ); |
| 46 | } |
| 47 | |
| 48 | void CompressedVectorSectionHeader::verify( uint64_t filePhysicalSize ) |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected