fix: Format string syntax error

This commit is contained in:
WerWolv
2022-10-22 13:46:48 +02:00
parent 04a4957ccf
commit f53d7fc9f3
2 changed files with 2 additions and 2 deletions

View File

@@ -117,7 +117,7 @@ namespace hex::plugin::builtin {
constexpr static inline auto ByteCount = 1;
constexpr static inline auto CharCount = ByteCount * 2;
const static inline auto FormattingUpperCase = hex::format("%0{}{}}X", CharCount, getFormatLengthSpecifier<u8>());
const static inline auto FormattingUpperCase = hex::format("%0{}{}X", CharCount, getFormatLengthSpecifier<u8>());
const static inline auto FormattingLowerCase = hex::format("%0{}{}x", CharCount, getFormatLengthSpecifier<u8>());
static const char *getFormatString(bool upperCase) {