summaryrefslogtreecommitdiffstats
path: root/src/common/hex_util.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-16 05:16:11 +0200
committerLioncash <mathew1800@gmail.com>2018-08-16 05:24:00 +0200
commitb39cd70cd4a78903506d987080fe5e4a0e990f2d (patch)
tree64b90ace1c02e926a94d4b6dfa37377503dbca26 /src/common/hex_util.h
parentMerge pull request #1005 from DarkLordZach/registered-fmt (diff)
downloadyuzu-b39cd70cd4a78903506d987080fe5e4a0e990f2d.tar
yuzu-b39cd70cd4a78903506d987080fe5e4a0e990f2d.tar.gz
yuzu-b39cd70cd4a78903506d987080fe5e4a0e990f2d.tar.bz2
yuzu-b39cd70cd4a78903506d987080fe5e4a0e990f2d.tar.lz
yuzu-b39cd70cd4a78903506d987080fe5e4a0e990f2d.tar.xz
yuzu-b39cd70cd4a78903506d987080fe5e4a0e990f2d.tar.zst
yuzu-b39cd70cd4a78903506d987080fe5e4a0e990f2d.zip
Diffstat (limited to '')
-rw-r--r--src/common/hex_util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/hex_util.h b/src/common/hex_util.h
index 13d586015..5fb79bb72 100644
--- a/src/common/hex_util.h
+++ b/src/common/hex_util.h
@@ -10,6 +10,8 @@
#include <fmt/format.h>
#include "common/common_types.h"
+namespace Common {
+
u8 ToHexNibble(char c1);
template <size_t Size, bool le = false>
@@ -35,3 +37,5 @@ std::string HexArrayToString(std::array<u8, Size> array, bool upper = true) {
std::array<u8, 0x10> operator"" _array16(const char* str, size_t len);
std::array<u8, 0x20> operator"" _array32(const char* str, size_t len);
+
+} // namespace Common