$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [gsoc] Boost.Process done
From: Jeff Flinn (TriumphSprint2000_at_[hidden])
Date: 2010-08-26 22:16:57
Boris Schaeling wrote:
> Here are the results of the Boost.Process project within this year's
Is this intended:
boost/process/stream_behavior.hpp: line 117:
return boost::make_shared<inherit>(inherit(child_end));
This is constructing an 'inherit' instance and passing it to
make_shared, which I presume then calls the default copy constructor for
inherit. Don't you mean:
return boost::make_shared<inherit>(child_end);
Thanks, Jeff