$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Wilka (wilka_at_[hidden])
Date: 2001-10-06 14:59:42
With MSVC 6, the current version of boost::bind gives errors with
<code>
void foo();
int main()
{
boost::function<void> f = boost::bind(foo);
f();
return 0;
}
</code>
However, boost::function works OK. That is
<code>
void foo();
int main()
{
boost::function<void> f(&foo);
f();
return 0;
}
</code>
Compiles with no errors. Is this just an omission from boost::bind, or
are new libraries not going to include these 'fixes' for broken
compilers?
- Wilka