| 64 | } |
| 65 | |
| 66 | void PackedFilesWriter::removeFileIfExists(const String & name) |
| 67 | { |
| 68 | metadata_changes.emplace_back(MetadataChange::REMOVE_IF_EXISTS, name, ""); |
| 69 | applyRemoveFile(metadata_changes.back(), written_files); |
| 70 | } |
| 71 | |
| 72 | /// Returns the size of string written by @writeStringBinary call. |
| 73 | static UInt64 getLengthOfSerializedString(const String & str) |
no test coverage detected