Comment AST nodes: rename Num*Bitfields to Num*Bits to be consistent with Stmt AST nodes.

llvm-svn: 160402
This commit is contained in:
Dmitri Gribenko 2012-07-17 22:43:26 +00:00
parent 9db5e14349
commit 9fa677c5ce
1 changed files with 3 additions and 3 deletions

View File

@ -48,12 +48,12 @@ protected:
/// (There is no separate AST node for a newline.) /// (There is no separate AST node for a newline.)
unsigned HasTrailingNewline : 1; unsigned HasTrailingNewline : 1;
}; };
enum { NumInlineContentCommentBitfields = 9 }; enum { NumInlineContentCommentBits = 9 };
class HTMLStartTagCommentBitfields { class HTMLStartTagCommentBitfields {
friend class HTMLStartTagComment; friend class HTMLStartTagComment;
unsigned : NumInlineContentCommentBitfields; unsigned : NumInlineContentCommentBits;
/// True if this tag is self-closing (e. g., <br />). This is based on tag /// True if this tag is self-closing (e. g., <br />). This is based on tag
/// spelling in comment (plain <br> would not set this flag). /// spelling in comment (plain <br> would not set this flag).
@ -71,7 +71,7 @@ protected:
/// True if direction was specified explicitly in the comment. /// True if direction was specified explicitly in the comment.
unsigned IsDirectionExplicit : 1; unsigned IsDirectionExplicit : 1;
}; };
enum { NumParamCommandCommentBitfields = 11 }; enum { NumParamCommandCommentBits = 11 };
union { union {
CommentBitfields CommentBits; CommentBitfields CommentBits;