$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Beman Dawes (bdawes_at_[hidden])
Date: 2001-04-05 12:59:37
At 01:20 PM 4/5/2001, David Abrahams wrote:
>> * Destructors become slightly slower.
>
>How does /that/ happen??
// C.hpp
class Cimpl;
class C {
public:
~C();
^^^^^ no long inline
private:
boost::scoped_ptr<Cimpl> impl;
};
--Beman