| 339 | } |
| 340 | |
| 341 | uint64_t FilesContainerW::SaveCurrentSize() |
| 342 | { |
| 343 | ASSERT(!m_finished, ()); |
| 344 | uint64_t const curr = FileReader(m_name).Size(); |
| 345 | if (!m_info.empty()) |
| 346 | m_info.back().m_size = curr - m_info.back().m_offset; |
| 347 | return curr; |
| 348 | } |
| 349 | |
| 350 | void FilesContainerW::DeleteSection(Tag const & tag) |
| 351 | { |
nothing calls this directly
no test coverage detected