mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
StringUtil: Remove ValueToString(std::string)
Doesn't make a lot of sense to have a function that gives the string representation for a string.
This commit is contained in:
@@ -332,11 +332,6 @@ std::string ValueToString(bool value)
|
||||
return value ? "True" : "False";
|
||||
}
|
||||
|
||||
std::string ValueToString(const std::string& value)
|
||||
{
|
||||
return value;
|
||||
}
|
||||
|
||||
bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _pFilename,
|
||||
std::string* _pExtension)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user