From 15cdcbf14b899d0189a5284dda9bf1f043e48f7a Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 3 Jul 2012 20:21:49 +0000 Subject: [PATCH] CommentLexer: remove Markdown tokens from the token list (they are not emitted by lexer). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159681 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/CommentLexer.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/include/clang/AST/CommentLexer.h b/include/clang/AST/CommentLexer.h index 1a43341b88..226bc73351 100644 --- a/include/clang/AST/CommentLexer.h +++ b/include/clang/AST/CommentLexer.h @@ -41,15 +41,7 @@ enum TokenKind { html_equals, // = html_quoted_string, // "blah\"blah" or 'blah\'blah' html_greater, // > - html_tag_close, // - - // 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 // }; } // end namespace tok -- 2.40.0