$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jeff Flinn (TriumphSprint2000_at_[hidden])
Date: 2006-05-18 14:29:36
The example is missing a ')' in
http://www.boost.org/libs/utility/in_place_factories.html#framework
void foo()
{
C c( in_place(123,"hello" ) ;
}
should be
void foo()
{
C c( in_place(123,"hello") ) ;
}
Out of curiosity are others using this library? Experiences?
Thanks, Jeff