GzippedFileReader: Fix index creation

This commit is contained in:
Connor McLaughlin
2022-05-23 00:05:41 +10:00
committed by refractionpcsx2
parent ea051c6d5f
commit b919719aeb
3 changed files with 23 additions and 18 deletions

View File

@@ -196,6 +196,7 @@ namespace StringUtil
/// Replaces all instances of search in subject with replacement.
std::string ReplaceAll(const std::string_view& subject, const std::string_view& search, const std::string_view& replacement);
void ReplaceAll(std::string* subject, const std::string_view& search, const std::string_view& replacement);
/// Parses an assignment string (Key = Value) into its two components.
bool ParseAssignmentString(const std::string_view& str, std::string_view* key, std::string_view* value);