1
0
mirror of synced 2024-11-25 00:00:27 +01:00

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

@ -1 +1 @@
Subproject commit 2233e1ab6b1a29be8ee6a2074c88b2c4ed40503b
Subproject commit fb3059bfaa292319135ae947cc0b9ca690a2e582

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) {