aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-07-03 20:21:49 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-07-03 20:21:49 +0000
commit15cdcbf14b899d0189a5284dda9bf1f043e48f7a (patch)
treea4f735977e71ace69a1ee01e4949b6466d7c78a1
parent96fac6a7fe89deff7860e536febbd4ae17bb57f3 (diff)
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
-rw-r--r--include/clang/AST/CommentLexer.h10
1 files changed, 1 insertions, 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, // </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