summaryrefslogtreecommitdiff
path: root/Source/Core/Common/StringUtil.cpp
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-01-21 21:16:51 +0100
committermathieui <mathieui@mathieui.net>2016-01-21 21:16:51 +0100
commit3e283ea9f17aa779832db065b2ecc4b19cf03e83 (patch)
treea7e5db6d6550487db024bc9b7b5dd9fa96198aa4 /Source/Core/Common/StringUtil.cpp
parent78aa398e7c09adc4fb9318a4c497e8fd1bcd58ba (diff)
More asterisks
Diffstat (limited to 'Source/Core/Common/StringUtil.cpp')
-rw-r--r--Source/Core/Common/StringUtil.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Common/StringUtil.cpp b/Source/Core/Common/StringUtil.cpp
index afc63ca2f4..bb8ec8887c 100644
--- a/Source/Core/Common/StringUtil.cpp
+++ b/Source/Core/Common/StringUtil.cpp
@@ -145,7 +145,7 @@ std::string StringFromFormatV(const char* format, va_list args)
}
// For Debugging. Read out an u8 array.
-std::string ArrayToString(const u8 *data, u32 size, int line_len, bool spaces)
+std::string ArrayToString(const u8* data, u32 size, int line_len, bool spaces)
{
std::ostringstream oss;
oss << std::setfill('0') << std::hex;
@@ -188,7 +188,7 @@ std::string StripQuotes(const std::string& s)
return s;
}
-bool TryParse(const std::string &str, u32 *const output)
+bool TryParse(const std::string &str, u32* const output)
{
char* endptr = nullptr;
@@ -213,7 +213,7 @@ bool TryParse(const std::string &str, u32 *const output)
return true;
}
-bool TryParse(const std::string &str, bool *const output)
+bool TryParse(const std::string &str, bool* const output)
{
if ("1" == str || !strcasecmp("true", str.c_str()))
*output = true;