aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-07-17 22:43:26 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-07-17 22:43:26 +0000
commitbefceba36bb91f05dd36b06fae93e2539c944622 (patch)
tree0c38f50c38482740213b09b60e7b0256a6182f14
parent8de0956c736428c6aa2d317a8bad0c0c494ad6c3 (diff)
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
-rw-r--r--include/clang/AST/Comment.h6
1 files changed, 3 insertions, 3 deletions
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., <br />). This is based on tag
/// spelling in comment (plain <br> 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;