From: Dmitri Gribenko Date: Sat, 21 Jul 2012 03:10:43 +0000 (+0000) Subject: Comment AST nodes: add NumHTMLStartTagCommentBits member. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8986e108e04a4fbe9248f87708410bb073940d7b;p=clang Comment AST nodes: add NumHTMLStartTagCommentBits member. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160600 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Comment.h b/include/clang/AST/Comment.h index 3eee704be0..544a7e4d53 100644 --- a/include/clang/AST/Comment.h +++ b/include/clang/AST/Comment.h @@ -72,6 +72,7 @@ protected: /// spelling in comment (plain
would not set this flag). unsigned IsSelfClosing : 1; }; + enum { NumHTMLStartTagCommentBits = NumInlineContentCommentBits + 1 }; class ParagraphCommentBitfields { friend class ParagraphComment;