From: Dmitri Gribenko Date: Tue, 17 Jul 2012 22:43:26 +0000 (+0000) Subject: Comment AST nodes: rename Num*Bitfields to Num*Bits to be consistent with Stmt AST... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=befceba36bb91f05dd36b06fae93e2539c944622;p=clang Comment AST nodes: rename Num*Bitfields to Num*Bits to be consistent with Stmt AST nodes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160402 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Comment.h b/include/clang/AST/Comment.h index 9087b9cd66..05ad33fe3a 100644 --- a/include/clang/AST/Comment.h +++ b/include/clang/AST/Comment.h @@ -48,12 +48,12 @@ protected: /// (There is no separate AST node for a newline.) unsigned HasTrailingNewline : 1; }; - enum { NumInlineContentCommentBitfields = 9 }; + enum { NumInlineContentCommentBits = 9 }; class HTMLStartTagCommentBitfields { friend class HTMLStartTagComment; - unsigned : NumInlineContentCommentBitfields; + unsigned : NumInlineContentCommentBits; /// True if this tag is self-closing (e. g.,
). This is based on tag /// spelling in comment (plain
would not set this flag). @@ -71,7 +71,7 @@ protected: /// True if direction was specified explicitly in the comment. unsigned IsDirectionExplicit : 1; }; - enum { NumParamCommandCommentBitfields = 11 }; + enum { NumParamCommandCommentBits = 11 }; union { CommentBitfields CommentBits;