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
typename EnableIfNotPair<U>::return_type construct(U* p, Args&&... args) is not forwarding the args which leads to a loss of qualifiers for some operations. Simple fix but critical consequences as this bug means some types are copied instead of moved.
The text was updated successfully, but these errors were encountered:
typename EnableIfNotPair<U>::return_type construct(U* p, Args&&... args)
is not forwarding the args which leads to a loss of qualifiers for some operations. Simple fix but critical consequences as this bug means some types are copied instead of moved.The text was updated successfully, but these errors were encountered: