riccibruno marked an inline comment as done. riccibruno added inline comments.
================ Comment at: include/clang/Basic/IdentifierTable.h:119 + IdentifierInfo() + : TokenID(tok::identifier), ObjCOrBuiltinID(0), HasMacro(false), ---------------- erichkeane wrote: > Instead of putting these in an initializer, can you default-init each of them > inline, then make this =default? Nope, you cannot default-init bit-fields (at least not until c++20) Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D54866/new/ https://reviews.llvm.org/D54866 _______________________________________________ cfe-commits mailing list [email protected] http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
