hle/result: Declare copy/move constructor/assignment as noexcept
While we're at it, we can also declare these copy/move constructor/assignment as noexcept.
This commit is contained in:
parent
189927c237
commit
1b5c37fa29
|
@ -206,7 +206,7 @@ public:
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultVal(const ResultVal& o) : result_code(o.result_code) {
|
ResultVal(const ResultVal& o) noexcept : result_code(o.result_code) {
|
||||||
if (!o.empty()) {
|
if (!o.empty()) {
|
||||||
new (&object) T(o.object);
|
new (&object) T(o.object);
|
||||||
}
|
}
|
||||||
|
@ -224,7 +224,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultVal& operator=(const ResultVal& o) {
|
ResultVal& operator=(const ResultVal& o) noexcept {
|
||||||
if (this == &o) {
|
if (this == &o) {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
@ -244,7 +244,7 @@ public:
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultVal& operator=(ResultVal&& o) {
|
ResultVal& operator=(ResultVal&& o) noexcept {
|
||||||
if (this == &o) {
|
if (this == &o) {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue