cblichmann created this revision. cblichmann added reviewers: clang, rsmith, zahiraam. cblichmann added a project: clang. Herald added a project: All. cblichmann requested review of this revision. Herald added a subscriber: cfe-commits.
This change just updates the comment in the tabledef, no change in observable behavior. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D157727 Files: clang/include/clang/AST/CXXRecordDeclDefinitionBits.def Index: clang/include/clang/AST/CXXRecordDeclDefinitionBits.def =================================================================== --- clang/include/clang/AST/CXXRecordDeclDefinitionBits.def +++ clang/include/clang/AST/CXXRecordDeclDefinitionBits.def @@ -99,7 +99,7 @@ /// True when there are protected non-static data members. FIELD(HasProtectedFields, 1, NO_MERGE) -/// True when there are private non-static data members. +/// True when there are public non-static data members. FIELD(HasPublicFields, 1, NO_MERGE) /// True if this class (or any subobject) has mutable fields.
Index: clang/include/clang/AST/CXXRecordDeclDefinitionBits.def =================================================================== --- clang/include/clang/AST/CXXRecordDeclDefinitionBits.def +++ clang/include/clang/AST/CXXRecordDeclDefinitionBits.def @@ -99,7 +99,7 @@ /// True when there are protected non-static data members. FIELD(HasProtectedFields, 1, NO_MERGE) -/// True when there are private non-static data members. +/// True when there are public non-static data members. FIELD(HasPublicFields, 1, NO_MERGE) /// True if this class (or any subobject) has mutable fields.
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits