$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Joseph Gauterin (joseph.gauterin_at_[hidden])
Date: 2007-11-27 11:07:39
What's the advantage to using
int BOOST_LOCAL_FUNCTION(char c)
{
std::cout << c << '\n';
return 1;
} BOOST_LOCAL_FUNCTION_DECL(a)
over:
struct
{
int operator()(char c)const
{
std::cout << c << '\n';
return 1;
}
} a;
?