]> granicus.if.org Git - clang/commitdiff
Comment AST nodes: rename Num*Bitfields to Num*Bits to be consistent with Stmt AST...
authorDmitri Gribenko <gribozavr@gmail.com>
Tue, 17 Jul 2012 22:43:26 +0000 (22:43 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Tue, 17 Jul 2012 22:43:26 +0000 (22:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160402 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Comment.h

index 9087b9cd66bb16810987c0957aced1bfb5195d3b..05ad33fe3a507f8cfb0bbaa99e5935b060259dec 100644 (file)
@@ -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;