| 50 | } |
| 51 | |
| 52 | ValdiModuleArchiveEntry ValdiModuleArchive::getEntryForIndex(size_t index) const { |
| 53 | SC_ASSERT(index < _orderedEntryPaths.size()); |
| 54 | auto entry = getEntry(_orderedEntryPaths[index]); |
| 55 | SC_ASSERT(entry); |
| 56 | return entry.value(); |
| 57 | } |
| 58 | |
| 59 | bool ValdiModuleArchive::operator==(const ValdiModuleArchive& other) const { |
| 60 | return _decompressedContent == other._decompressedContent; |
no test coverage detected