-
Mathias Goldau authored
boost::shared_ptr< foo > bar = boost::shared_ptr< foo >( new foo(...) ); are often very long and hard to read. They have changed to: boost::shared_ptr< foo > bar( new foo(...) );
36adbbbb
boost::shared_ptr< foo > bar = boost::shared_ptr< foo >( new foo(...) ); are often very long and hard to read. They have changed to: boost::shared_ptr< foo > bar( new foo(...) );