diff options
Diffstat (limited to 'src/common/hex_util.cpp')
| -rw-r--r-- | src/common/hex_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/hex_util.cpp b/src/common/hex_util.cpp index e516e5bbd..5b63f9e81 100644 --- a/src/common/hex_util.cpp +++ b/src/common/hex_util.cpp | |||
| @@ -30,7 +30,7 @@ std::vector<u8> HexStringToVector(std::string_view str, bool little_endian) { | |||
| 30 | return out; | 30 | return out; |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | std::string HexVectorToString(std::vector<u8> vector, bool upper) { | 33 | std::string HexVectorToString(const std::vector<u8>& vector, bool upper) { |
| 34 | std::string out; | 34 | std::string out; |
| 35 | for (u8 c : vector) | 35 | for (u8 c : vector) |
| 36 | out += fmt::format(upper ? "{:02X}" : "{:02x}", c); | 36 | out += fmt::format(upper ? "{:02X}" : "{:02x}", c); |