============================================================================= IndexPacket
| 528 | //============================================================================= |
| 529 | // IndexPacket |
| 530 | IndexPacket::IndexPacket() |
| 531 | { |
| 532 | // Double check that packet struct is correct length. Watch out for RTTI increasing the size. |
| 533 | // sizeof( IndexPacketHeader ) + ( MAX_ENTRIES * sizeof( IndexPacket::Entry ) ) |
| 534 | static_assert( sizeof( IndexPacket ) == ( 16 + ( 2048 * 16 ) ), |
| 535 | "Unexpected size of IndexPacket" ); |
| 536 | } |
| 537 | |
| 538 | void IndexPacket::verify( unsigned bufferLength, uint64_t totalRecordCount, |
| 539 | uint64_t fileSize ) const |
nothing calls this directly
no outgoing calls
no test coverage detected