$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jonathan Turkanis (technews_at_[hidden])
Date: 2003-12-10 00:42:11
This is a small point, since the code in question is hidden with '#if 0';
however, there seem to be several typos in the definition of is_abstract.
The closing brace should be '}', not ')'; also,
typedef mpl::and_< ... >::type;
should probably read
typedef typename mpl::and_< ... >::type type;
Jonathan