This commit is contained in:
Sy Brand
2023-02-24 09:18:20 +00:00
committed by GitHub
parent e2fe42d835
commit ee3326fac7

View File

@ -1182,7 +1182,7 @@ public:
}
}
if (rhs.has_value()) {
else if (rhs.has_value()) {
this->construct(*rhs);
}
@ -1204,7 +1204,7 @@ public:
}
}
if (rhs.has_value()) {
else if (rhs.has_value()) {
this->construct(std::move(*rhs));
}