C++ noshowbase ignored

Todd Denniston Todd.Denniston at ssa.crane.navy.mil
Tue Feb 3 23:46:49 UTC 2009


Mike -- EMAIL IGNORED wrote, On 02/03/2009 02:47 PM:
> In FC7, the line"
> 
> ...
>    cout << "a = 0x" << setfill('0') << hex << noshowbase <<
>                      setw(8) << a << dec << setfill(' ') << endl;
> ...
> 
> results in:
> 
> a = 0x0x91a1218
> 
> Is there something I can do about this?
> 

Mr. Obvious asked, "how 'bout changing the code like so:"
...
    cout << "a = " << setfill('0') << hex << noshowbase <<
                      setw(8) << a << dec << setfill(' ') << endl;
...

or for more pain
http://www.open-std.org/JTC1/sc22/wg21/docs/lwg-defects.html#183
cout << resetiosflags(ios_base::showbase)
????

-- 
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter




More information about the fedora-list mailing list