aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-07-21 03:10:43 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-07-21 03:10:43 +0000
commit8986e108e04a4fbe9248f87708410bb073940d7b (patch)
treed662c8765e8758af91196520c8fcef796a0589d0
parent3e63d332baf0d3b8a5c0b7c2dac2ae85615b1d47 (diff)
Comment AST nodes: add NumHTMLStartTagCommentBits member.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160600 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Comment.h1
1 files changed, 1 insertions, 0 deletions
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 <br> would not set this flag).
unsigned IsSelfClosing : 1;
};
+ enum { NumHTMLStartTagCommentBits = NumInlineContentCommentBits + 1 };
class ParagraphCommentBitfields {
friend class ParagraphComment;