$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Russell Hind (rhind_at_[hidden])
Date: 2004-01-14 05:42:25
Pavel Vozenilek wrote:
>
> This makes following code uncompilable (it worked back in 1.30.2):
>
> boost:format f;
> f = ".....";
>
I've hit this too. Now use
f = boost::format("....");
But don't know how much less efficient this is because of the copy.
I wonder why it was removed.
Thanks
Russell