
27 Aug
2010
27 Aug
'10
2:16 a.m.
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