diff options
| author | Lioncash <mai.iam2048@gmail.com> | 2023-05-16 14:17:54 -0400 |
|---|---|---|
| committer | Lioncash <mai.iam2048@gmail.com> | 2023-05-16 14:17:54 -0400 |
| commit | 21df3ca572a0fad37440b29c56c83d50c45c92f4 (patch) | |
| tree | 2a591e415f8bcae667bbfaa7b4c4de57db420674 /Source/Core/Common/StringUtil.cpp | |
| parent | a9f1edeb614297ba1bf20529e1888929252a9f60 (diff) | |
StringUtil: Move IsPrintableCharacter() into Common namespace
Diffstat (limited to 'Source/Core/Common/StringUtil.cpp')
| -rw-r--r-- | Source/Core/Common/StringUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/StringUtil.cpp b/Source/Core/Common/StringUtil.cpp index af81e2b84b..c041164f22 100644 --- a/Source/Core/Common/StringUtil.cpp +++ b/Source/Core/Common/StringUtil.cpp @@ -77,7 +77,7 @@ std::string HexDump(const u8* data, size_t size) if (row_start + i < size) { char c = static_cast<char>(data[row_start + i]); - out += IsPrintableCharacter(c) ? c : '.'; + out += Common::IsPrintableCharacter(c) ? c : '.'; } } out += "\n"; |
