[PATCH] D138603: [Clang] Implement LWG3823 for __is_aggregate

Christopher Di Bella via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 28 11:20:45 PST 2022


cjdb added inline comments.


================
Comment at: clang/test/SemaCXX/type-traits.cpp:556
   static_assert(__is_aggregate(EmptyArMB), "");
   static_assert(!__is_aggregate(void), "");
   static_assert(!__is_aggregate(const volatile void), "");
----------------
shafik wrote:
> Should this be `true` now or am I misunderstanding.
This should stay false, because the change is only concerned with arrays of incomplete types.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D138603/new/

https://reviews.llvm.org/D138603



More information about the cfe-commits mailing list