Changes between Initial Version and Version 1 of Ticket #7971, comment 1


Ignore:
Timestamp:
Oct 12, 2017, 7:46:09 PM (5 years ago)
Author:
James E. King, III

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:
     1In 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
     9result in the string:
    210
    311{{{
     
    513}}}
    614
    7 as a string result.  Perhaps Boost.Format should do the same thing?
     15Perhaps Boost.Format should do the same thing?