From b39cd70cd4a78903506d987080fe5e4a0e990f2d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 15 Aug 2018 23:16:11 -0400 Subject: common: Namespace hex_util.h/.cpp It's in the common code, so it should be under the Common namespace like everything else. --- src/common/hex_util.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/common/hex_util.h') 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 #include "common/common_types.h" +namespace Common { + u8 ToHexNibble(char c1); template @@ -35,3 +37,5 @@ std::string HexArrayToString(std::array array, bool upper = true) { std::array operator"" _array16(const char* str, size_t len); std::array operator"" _array32(const char* str, size_t len); + +} // namespace Common -- cgit v1.2.3