[libcxx-commits] [PATCH] D116621: [libc++][P2321R2] Add const overloads to tuple swap, construction and assignment
Eric Fiselier via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Mar 18 10:34:52 PDT 2022
EricWF added inline comments.
================
Comment at: libcxx/include/tuple:754
_Lazy<_And,
- _Not<is_convertible<const tuple<_Up>&, _Tp> >...,
- _Not<is_constructible<_Tp, const tuple<_Up>&> >...
+ _Not<is_convertible<__maybe_const<_Const, tuple<_Up>>&, _Tp> >...,
+ _Not<is_constructible<_Tp, __maybe_const<_Const, tuple<_Up>>&> >...
----------------
EricWF wrote:
> What's `__maybe_const`? Should it be in this patch?
Ignore this.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116621/new/
https://reviews.llvm.org/D116621
More information about the libcxx-commits
mailing list