[cfe-commits] r160600 - /cfe/trunk/include/clang/AST/Comment.h

Dmitri Gribenko gribozavr at gmail.com
Fri Jul 20 20:10:43 PDT 2012


Author: gribozavr
Date: Fri Jul 20 22:10:43 2012
New Revision: 160600

URL: http://llvm.org/viewvc/llvm-project?rev=160600&view=rev
Log:
Comment AST nodes: add NumHTMLStartTagCommentBits member.

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=160600&r1=160599&r2=160600&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Comment.h (original)
+++ cfe/trunk/include/clang/AST/Comment.h Fri Jul 20 22:10:43 2012
@@ -72,6 +72,7 @@
     /// spelling in comment (plain <br> would not set this flag).
     unsigned IsSelfClosing : 1;
   };
+  enum { NumHTMLStartTagCommentBits = NumInlineContentCommentBits + 1 };
 
   class ParagraphCommentBitfields {
     friend class ParagraphComment;





More information about the cfe-commits mailing list