Searched defs:CopyOnly (Results 1 – 14 of 14) sorted by relevance
25 struct CopyOnly { struct26 CopyOnly() {} in CopyOnly() argument27 CopyOnly(CopyOnly const&) noexcept {} in CopyOnly() argument28 CopyOnly& operator=(CopyOnly const&) { return *this; } in operator =() argument
24 struct CopyOnly { struct25 CopyOnly() {} in CopyOnly() argument26 CopyOnly(CopyOnly const&) noexcept {} in CopyOnly() argument27 CopyOnly& operator=(CopyOnly const&) { return *this; } in operator =() argument
29 struct CopyOnly { struct30 explicit CopyOnly(int val) : value(val) {} in CopyOnly() function32 CopyOnly(const CopyOnly& other) { value = other.value; } in CopyOnly() argument34 CopyOnly& operator=(const CopyOnly& other) { in operator =()41 int value;
26 struct CopyOnly { struct
49 struct CopyOnly { struct51 explicit CopyOnly(int value) : value(value) {} in CopyOnly() argument57 int value = 0;
49 struct CopyOnly { struct51 explicit CopyOnly(int value) : value(value) {} in CopyOnly() function57 int value = 0;
143 struct CopyOnly { struct
227 struct CopyOnly { struct
46 struct CopyOnly { struct
43 struct CopyOnly { struct