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());
}

View File

@ -7,6 +7,7 @@
#include <cstddef>
#include <fstream>
#include <string>
#include <string_view>
#include <vector>
#include <sys/stat.h>
@ -198,7 +199,7 @@ std::string GetBundleDirectory();
std::string GetExePath();
std::string GetExeDirectory();
bool WriteStringToFile(const std::string& filename, const std::string& str);
bool WriteStringToFile(const std::string& filename, std::string_view str);
bool ReadFileToString(const std::string& filename, std::string& str);
// To deal with Windows being dumb at unicode: