Eugene.Zelenko added a comment. How does check handle bit fields? I encountered problem on next code in ASTContext.h:
struct TypeInfo {
uint64_t Width;
unsigned Align;
bool AlignIsRequired : 1;
TypeInfo() : Width(0), Align(0), AlignIsRequired(false) {}
};
Will be also good idea to add test case for bit fields.
https://reviews.llvm.org/D26750
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
