Changes between Initial Version and Version 1 of Ticket #7971, comment 1
- Timestamp:
- Oct 12, 2017, 7:46:09 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7971, comment 1
initial v1 1 In both Linux (libc 2.24) and Windows (Visual Studio 2015, 2017), printf("%s", nullptr) yields: 1 In both Linux (libc 2.24) and Windows (Visual Studio 2015, 2017), 2 3 {{{ 4 printf("%s", nullptr); 5 or 6 printf("%s", 0); 7 }}} 8 9 result in the string: 2 10 3 11 {{{ … … 5 13 }}} 6 14 7 as a string result.Perhaps Boost.Format should do the same thing?15 Perhaps Boost.Format should do the same thing?