From 83324fe77dced89c6369b75ecf91899078508e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sun, 3 Jun 2018 14:55:39 +0200 Subject: StringUtil: Remove ValueToString(std::string) Doesn't make a lot of sense to have a function that gives the string representation for a string. --- Source/Core/Common/StringUtil.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Source/Core/Common/StringUtil.cpp') 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) { -- cgit v1.2.3