summaryrefslogtreecommitdiff
path: root/src/common/hex_util.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-10-01 17:17:08 -0400
committerGravatar Zach Hilman2018-10-04 11:34:36 -0400
commit70bd2bb1d3aec23fc052c9612f9e530c1a2de72d (patch)
tree309d313d8182778919cafff884fd962267d2b38c /src/common/hex_util.h
parentips_layer: Add support for escape sequences and midline comments (diff)
downloadyuzu-70bd2bb1d3aec23fc052c9612f9e530c1a2de72d.tar.gz
yuzu-70bd2bb1d3aec23fc052c9612f9e530c1a2de72d.tar.xz
yuzu-70bd2bb1d3aec23fc052c9612f9e530c1a2de72d.zip
ips_layer: Deduplicate resource usage
Diffstat (limited to 'src/common/hex_util.h')
-rw-r--r--src/common/hex_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/hex_util.h b/src/common/hex_util.h
index 0b7d3592a..68f003cb6 100644
--- a/src/common/hex_util.h
+++ b/src/common/hex_util.h
@@ -30,7 +30,7 @@ std::array<u8, Size> HexStringToArray(std::string_view str) {
30 return out; 30 return out;
31} 31}
32 32
33std::string HexVectorToString(std::vector<u8> vector, bool upper = true); 33std::string HexVectorToString(const std::vector<u8>& vector, bool upper = true);
34 34
35template <std::size_t Size> 35template <std::size_t Size>
36std::string HexArrayToString(std::array<u8, Size> array, bool upper = true) { 36std::string HexArrayToString(std::array<u8, Size> array, bool upper = true) {