Example #1
0
 x& operator=(x const& rhs)
 {
     incr_copy();
     return *this;
 }
Example #2
0
 x& operator=(x const& /*rhs*/)
 {
     incr_copy();
     return *this;
 }
Example #3
0
 x(x const& rhs)
 {
     incr_copy();
 }
Example #4
0
 x(x const& /*rhs*/)
 {
     incr_copy();
 }