コード例 #1
0
ファイル: move.hpp プロジェクト: Adikteev/rtbkit-deps
 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
ファイル: move.hpp プロジェクト: Adikteev/rtbkit-deps
 x(x const& rhs)
 {
     incr_copy();
 }
コード例 #4
0
ファイル: move.hpp プロジェクト: Ding8222/abelkhan
 x(x const& /*rhs*/)
 {
     incr_copy();
 }