
4 May
2005
4 May
'05
10:01 p.m.
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.