[libcxx-commits] [PATCH] D129094: [libc++] Simplify type_traits a bit more
Hui via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Aug 15 12:50:46 PDT 2022
huixie90 added inline comments.
================
Comment at: libcxx/test/libcxx/ranges/range.adaptors/range.copy.wrap/types.h:26
constexpr explicit CopyConstructible(int x) : value(x) { }
- CopyConstructible(CopyConstructible const&) noexcept(false) = default;
+ constexpr CopyConstructible(CopyConstructible const&) noexcept(false) {}
CopyConstructible& operator=(CopyConstructible const&) = delete;
----------------
why is this change required?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129094/new/
https://reviews.llvm.org/D129094
More information about the libcxx-commits
mailing list