[cfe-commits] r160402 - /cfe/trunk/include/clang/AST/Comment.h
Dmitri Gribenko
gribozavr at gmail.com
Tue Jul 17 15:43:26 PDT 2012
Author: gribozavr
Date: Tue Jul 17 17:43:26 2012
New Revision: 160402
URL: http://llvm.org/viewvc/llvm-project?rev=160402&view=rev
Log:
Comment AST nodes: rename Num*Bitfields to Num*Bits to be consistent with Stmt AST nodes.
Modified:
cfe/trunk/include/clang/AST/Comment.h
Modified: cfe/trunk/include/clang/AST/Comment.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Comment.h?rev=160402&r1=160401&r2=160402&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Comment.h (original)
+++ cfe/trunk/include/clang/AST/Comment.h Tue Jul 17 17:43:26 2012
@@ -48,12 +48,12 @@
/// (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 @@
/// True if direction was specified explicitly in the comment.
unsigned IsDirectionExplicit : 1;
};
- enum { NumParamCommandCommentBitfields = 11 };
+ enum { NumParamCommandCommentBits = 11 };
union {
CommentBitfields CommentBits;
More information about the cfe-commits
mailing list