p21 binary should be uppercase

This commit is contained in:
Thomas Krijnen
2023-12-26 14:28:45 +01:00
parent 6baf3da67a
commit 2db6e0193f
+1 -1
View File
@@ -98,7 +98,7 @@ class StringBuilderVisitor : public boost::static_visitor<void> {
std::ostringstream oss;
oss.imbue(std::locale::classic());
oss.put('"');
oss << std::hex << std::setw(1);
oss << std::uppercase << std::hex << std::setw(1);
unsigned c = (unsigned)b.size();
unsigned n = (4 - (c % 4)) & 3;
oss << n;