Skip to content

Commit 2db6e01

Browse files
committed
p21 binary should be uppercase
1 parent 6baf3da commit 2db6e01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ifcparse/IfcWrite.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class StringBuilderVisitor : public boost::static_visitor<void> {
9898
std::ostringstream oss;
9999
oss.imbue(std::locale::classic());
100100
oss.put('"');
101-
oss << std::hex << std::setw(1);
101+
oss << std::uppercase << std::hex << std::setw(1);
102102
unsigned c = (unsigned)b.size();
103103
unsigned n = (4 - (c % 4)) & 3;
104104
oss << n;

0 commit comments

Comments
 (0)