Skip to content
Snippets Groups Projects
Commit f77b29a6 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

OutputStream: Do not prefix hex numbers with 0x

parent cf31570d
No related branches found
No related tags found
No related merge requests found
......@@ -59,8 +59,9 @@ OutputStream & OutputStream::operator<<(unsigned long long number)
put('0');
break;
case 16:
put('0');
put('x');
if (number < 16) {
put('0');
}
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment