summaryrefslogtreecommitdiff
path: root/Source/Core/Common/StringUtil.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@innovatetechnologi.es>2018-06-03 14:55:39 +0200
committerLéo Lam <leo@innovatetechnologi.es>2018-06-03 15:11:59 +0200
commit83324fe77dced89c6369b75ecf91899078508e17 (patch)
tree152884158fd5d616ede46aa9a2255d5e57437a14 /Source/Core/Common/StringUtil.cpp
parent7e79bf97abf57130d21d635d908ff3ca12e89fb4 (diff)
StringUtil: Remove ValueToString(std::string)
Doesn't make a lot of sense to have a function that gives the string representation for a string.
Diffstat (limited to 'Source/Core/Common/StringUtil.cpp')
-rw-r--r--Source/Core/Common/StringUtil.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/Core/Common/StringUtil.cpp b/Source/Core/Common/StringUtil.cpp
index 372ea06c19..c2a5a62b2d 100644
--- a/Source/Core/Common/StringUtil.cpp
+++ b/Source/Core/Common/StringUtil.cpp
@@ -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)
{