cast chars to int when we want to print integers so we get a number
instead of a character --HG-- extra : convert_revision : 7bfa88ba23ad057b751eb01a80416d9f72cfe81a
This commit is contained in:
@@ -288,13 +288,13 @@ format_integer(std::ostream &out, const T &data, Format &fmt)
|
||||
{ _format_integer(out, data, fmt); }
|
||||
inline void
|
||||
format_integer(std::ostream &out, char data, Format &fmt)
|
||||
{ _format_integer(out, data, fmt); }
|
||||
{ _format_integer(out, (int)data, fmt); }
|
||||
inline void
|
||||
format_integer(std::ostream &out, unsigned char data, Format &fmt)
|
||||
{ _format_integer(out, data, fmt); }
|
||||
{ _format_integer(out, (int)data, fmt); }
|
||||
inline void
|
||||
format_integer(std::ostream &out, signed char data, Format &fmt)
|
||||
{ _format_integer(out, data, fmt); }
|
||||
{ _format_integer(out, (int)data, fmt); }
|
||||
#if 0
|
||||
inline void
|
||||
format_integer(std::ostream &out, short data, Format &fmt)
|
||||
|
||||
@@ -43,6 +43,7 @@ main()
|
||||
char foo[9];
|
||||
cprintf("%s\n", foo);
|
||||
|
||||
cprintf("%d\n", 'A');
|
||||
cprintf("%shits%%s + %smisses%%s\n", "test", "test");
|
||||
cprintf("%%s%-10s %c he went home \'\"%d %#o %#x %1.5f %1.2E\n",
|
||||
"hello", 'A', 1, 0xff, 0xfffffffffffffULL, 3.141592653589, 1.1e10);
|
||||
|
||||
Reference in New Issue
Block a user