$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Larry Evans (cppljevans_at_[hidden])
Date: 2005-05-04 17:01:33
The existing code:
stored_param clone(stored_param p) const
{
++*count_;
return p;
}
should be changed, AFAICT, to:
stored_param clone(stored_param p) const
{
if(count_) ++*count_;
return p;
}
unless I'm missing something.