Common/FileUtil: Use std::string_view with WriteStringToFile

Allows writing out other forms of strings (e.g. C strings) without the
need to allocate a std::string and discard it after use.
This commit is contained in:
Lioncash
2019-05-28 17:47:26 -04:00
parent eb475025b8
commit c0f499b7f7
2 changed files with 3 additions and 2 deletions

View File

@ -887,7 +887,7 @@ std::string GetThemeDir(const std::string& theme_name)
return GetSysDirectory() + THEMES_DIR "/" DEFAULT_THEME_DIR "/";
}
bool WriteStringToFile(const std::string& filename, const std::string& str)
bool WriteStringToFile(const std::string& filename, std::string_view str)
{
return File::IOFile(filename, "wb").WriteBytes(str.data(), str.size());
}