$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Sebastian Redl (sebastian.redl_at_[hidden])
Date: 2006-01-15 05:48:27
MB wrote:
>A short story is:
>
>   struct X { };
>   void f(X& x);
>   void f(const X& x);
>
>   void test()
>   {
>     X x; {
>       // initialize x.
>     }
>
>     f(const_(x));
>   }
>
>Here is the long story:
>   http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2004/n1674.pdf
>  
>
I don't see the connection. Are you looking for a way to simplify the 
code in listing 4?
Sebastian Redl