
15 Aug
2012
15 Aug
'12
4:52 p.m.
-----Original Message----- From: boost-bounces@lists.boost.org [mailto:boost-bounces@lists.boost.org] On Behalf Of Steven Watanabe Sent: Wednesday, August 15, 2012 5:43 PM To: boost@lists.boost.org Subject: Re: [boost] [type_erasure] Review started (July 18-27, 2012)
AMDG
On 08/15/2012 09:06 AM, Paul A. Bristow wrote:
I've wanted to add control of the column width.
<snip>
I expected to be able to add
os.width(20);
before
os << separator.c_str();
but that doesn't work.
<snip>
You should be able to use: static_cast<std::ios_base&>(os).width(20);
Correct! Thanks Paul