[cfe-commits] r159681 - /cfe/trunk/include/clang/AST/CommentLexer.h

Dmitri Gribenko gribozavr at gmail.com
Tue Jul 3 13:21:49 PDT 2012


Author: gribozavr
Date: Tue Jul  3 15:21:49 2012
New Revision: 159681

URL: http://llvm.org/viewvc/llvm-project?rev=159681&view=rev
Log:
CommentLexer: remove Markdown tokens from the token list (they are not emitted by lexer).

Modified:
    cfe/trunk/include/clang/AST/CommentLexer.h

Modified: cfe/trunk/include/clang/AST/CommentLexer.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/CommentLexer.h?rev=159681&r1=159680&r2=159681&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/CommentLexer.h (original)
+++ cfe/trunk/include/clang/AST/CommentLexer.h Tue Jul  3 15:21:49 2012
@@ -41,15 +41,7 @@
   html_equals,        // =
   html_quoted_string, // "blah\"blah" or 'blah\'blah'
   html_greater,       // >
-  html_tag_close,     // </tag>
-
-  // Markdown tokens (not supported yet).
-  ruler,
-  md_code_line,   // Line indented at least by 4 spaces.
-  md_code_inline, // `code`
-  md_emph,        // _text_ or *text*
-  md_strong,      // __text__ or *text*
-  md_header       // ### level 3 header ###
+  html_tag_close      // </tag>
 };
 } // end namespace tok
 





More information about the cfe-commits mailing list