$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (nesotto_at_[hidden])
Date: 2004-03-07 23:41:22
"Gabriel Dos Reis" <gdr_at_[hidden]> wrote in message
news:m365dgdlm3.fsf_at_uniton.integrable-solutions.net...
> Yes, and that should be anticipated. People have already been storing
> function objects (in the traditional C++ sense), there is no reason to
> believe they would not attempt the same thing with lambdas.
Consider
struct X
{
auto x;
};
how can we know the size of X? Should an initialization be required, eg
struct X
{
auto x = ...;
};
?
br
Thorsten