From 7fa4dbd0c6e89aab762eaf29607a0a0ced660847 Mon Sep 17 00:00:00 2001 From: archshift Date: Thu, 23 Oct 2014 21:17:01 -0700 Subject: Removed uses of raw c-string manipulation functions. --- src/common/string_util.cpp | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/common/string_util.cpp') diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp index 9199e30b..61f0939c 100644 --- a/src/common/string_util.cpp +++ b/src/common/string_util.cpp @@ -186,9 +186,9 @@ bool TryParse(const std::string &str, u32 *const output) bool TryParse(const std::string &str, bool *const output) { - if ("1" == str || !strcasecmp("true", str.c_str())) + if ("1" == str || "true" == ToLower(str)) *output = true; - else if ("0" == str || !strcasecmp("false", str.c_str())) + else if ("0" == str || "false" == ToLower(str)) *output = false; else return false; @@ -196,13 +196,6 @@ bool TryParse(const std::string &str, bool *const output) return true; } -std::string StringFromInt(int value) -{ - char temp[16]; - sprintf(temp, "%i", value); - return temp; -} - std::string StringFromBool(bool value) { return value ? "True" : "False"; -- cgit v1.2.3