[libcxx-commits] [PATCH] D97394: [libc++] [C++2b] [P2162] Allow inheritance from std::variant.
Marek Kurdej via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Mar 25 02:45:23 PDT 2021
curdeius added inline comments.
================
Comment at: libcxx/include/variant:340
+ return _VSTD::move(__vs);
+}
+
----------------
Quuxplusone wrote:
> Minor bikeshed: `&` `const&` `const&&` `&&` is a weird order to put these four overloads in :)
I changed to paper's order (`&`, `const &`, `&&`, `const &&`).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D97394/new/
https://reviews.llvm.org/D97394
More information about the libcxx-commits
mailing list