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
It should be CommonReference<const remove_reference_t<T>&, const remove_reference_t<U>&>.
Discussion: The purpose of this check is to verify that there is some reason to believe that T and U are merely different representations of the same set of values. This is adequately accomplished by testing the common-reference-ness of const lvalues of T's and U's underlying types. It makes no sense to drop the const by trying to apply it to a reference.
The text was updated successfully, but these errors were encountered:
It should be
CommonReference<const remove_reference_t<T>&, const remove_reference_t<U>&>
.Discussion: The purpose of this check is to verify that there is some reason to believe that
T
andU
are merely different representations of the same set of values. This is adequately accomplished by testing the common-reference-ness ofconst
lvalues ofT
's andU
's underlying types. It makes no sense to drop theconst
by trying to apply it to a reference.The text was updated successfully, but these errors were encountered: