예제 #1
0
 x& operator=(x const& rhs)
 {
     incr_copy();
     return *this;
 }
예제 #2
0
파일: move.hpp 프로젝트: Ding8222/abelkhan
 x& operator=(x const& /*rhs*/)
 {
     incr_copy();
     return *this;
 }
예제 #3
0
 x(x const& rhs)
 {
     incr_copy();
 }
예제 #4
0
파일: move.hpp 프로젝트: Ding8222/abelkhan
 x(x const& /*rhs*/)
 {
     incr_copy();
 }