shafik added inline comments.
================
Comment at: clang/lib/CodeGen/CGExprAgg.cpp:1688
for (const auto *Field : record->fields())
- assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
+ assert((Field->isUnnamedBitfield() ||
Field->isAnonymousStructOrUnion()) && "Only unnamed bitfields or ananymous
class allowed");
#endif
----------------
aaron.ballman wrote:
> Guessing at the way to solve the 80-col limit issue, but do whatever
> clang-format says.
This is what clang-format likes.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D139261/new/
https://reviews.llvm.org/D139261
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits