Returns the size of string written by @writeStringBinary call.
| 71 | |
| 72 | /// Returns the size of string written by @writeStringBinary call. |
| 73 | static UInt64 getLengthOfSerializedString(const String & str) |
| 74 | { |
| 75 | return getLengthOfVarUInt(str.size()) + str.size(); |
| 76 | } |
| 77 | |
| 78 | void PackedFilesWriter::applyMetadataChanges(PackedFilesIO::Index & index) |
| 79 | { |
no test coverage detected