File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -77,10 +77,7 @@ struct [[nodiscard]] IdType
77
77
78
78
// Conversion
79
79
GRAPHQLRESPONSE_EXPORT IdType (ByteData&& data) noexcept ;
80
- GRAPHQLRESPONSE_EXPORT IdType& operator =(ByteData&& data) noexcept ;
81
-
82
80
GRAPHQLRESPONSE_EXPORT IdType (OpaqueString&& opaque) noexcept ;
83
- GRAPHQLRESPONSE_EXPORT IdType& operator =(OpaqueString&& opaque) noexcept ;
84
81
85
82
template <typename ValueType>
86
83
[[nodiscard]] const ValueType& get () const ;
Original file line number Diff line number Diff line change @@ -68,23 +68,11 @@ IdType::IdType(ByteData&& data) noexcept
68
68
{
69
69
}
70
70
71
- IdType& IdType::operator =(ByteData&& data) noexcept
72
- {
73
- _data = { std::move (data) };
74
- return *this ;
75
- }
76
-
77
71
IdType::IdType (OpaqueString&& opaque) noexcept
78
72
: _data { std::move (opaque) }
79
73
{
80
74
}
81
75
82
- IdType& IdType::operator =(OpaqueString&& opaque) noexcept
83
- {
84
- _data = { std::move (opaque) };
85
- return *this ;
86
- }
87
-
88
76
bool IdType::operator ==(const IdType& rhs) const noexcept
89
77
{
90
78
if (_data.index () == rhs._data .index ())
You can’t perform that action at this time.
0 commit comments