aboutsummaryrefslogtreecommitdiff
path: root/src/common/string_util.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-13 14:11:34 -0500
committerLioncash <mathew1800@gmail.com>2018-11-13 18:14:11 -0500
commitc7387e6504db0548fc5dafec5a27ce6923e58db7 (patch)
tree21a21be4abc6e4b736f13da5b703efcbbe744ba0 /src/common/string_util.h
parentf1219e3a874bb16f2928e8b9e879f2a4ddf22ab7 (diff)
string_util: Remove ArrayToString()
An old function from Dolphin. This is also unused, and pretty inflexible when it comes to printing out different data types (for example, one might not want to print out an array of u8s but a different type instead. Given we use fmt, there's no need to keep this implementation of the function around.
Diffstat (limited to 'src/common/string_util.h')
-rw-r--r--src/common/string_util.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/string_util.h b/src/common/string_util.h
index 7e32d6405b..08f96533b6 100644
--- a/src/common/string_util.h
+++ b/src/common/string_util.h
@@ -17,8 +17,6 @@ std::string ToLower(std::string str);
/// Make a string uppercase
std::string ToUpper(std::string str);
-std::string ArrayToString(const u8* data, std::size_t size, int line_len = 20, bool spaces = true);
-
std::string StringFromBuffer(const std::vector<u8>& data);
std::string StripSpaces(const std::string& s);