You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, template <typename T> poly::operator=(T&& t). However, this suffers from possible problems when constructing with a possibly-throwing move constructor, which could cause poly to be in some kind of empty state. We have to think about this, because I'd rather not introduce an implicit "empty" state to poly.
The text was updated successfully, but these errors were encountered:
Basically,
template <typename T> poly::operator=(T&& t)
. However, this suffers from possible problems when constructing with a possibly-throwing move constructor, which could causepoly
to be in some kind of empty state. We have to think about this, because I'd rather not introduce an implicit "empty" state topoly
.The text was updated successfully, but these errors were encountered: