[PATCH] D128619: [Clang] Implement P0848 (Conditionally Trivial Special Member Functions)
Roy Jacobson via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 22 00:46:27 PDT 2022
royjacobson added inline comments.
================
Comment at: clang/test/SemaCXX/constrained-special-member-functions.cpp:103
+// FIXME: DR1734.
+static_assert(__is_trivially_copyable(CopyAssignmentChecker<1>));
+static_assert(!__is_trivially_copyable(CopyAssignmentChecker<2>));
----------------
cor3ntin wrote:
> Have you rebased since D127593 landed?
Yes. It's related but it's different DRs. And unfortunately they seem much more ABI breaking to fix - GCC don't implement them, for example
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128619/new/
https://reviews.llvm.org/D128619
More information about the cfe-commits
mailing list