diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-30 00:10:09 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-30 00:10:09 +0000 |
commit | ef6a39c80b806c85ecb719c4626dc14b23c29ec6 (patch) | |
tree | 64e0a7fb775166f0f6047f08fe7cabeec212fb25 /clang/lib/AST/CommentLexer.cpp | |
parent | f79ee383acb2f0283869ad367da0e30ed971e973 (diff) | |
download | bcm5719-llvm-ef6a39c80b806c85ecb719c4626dc14b23c29ec6.tar.gz bcm5719-llvm-ef6a39c80b806c85ecb719c4626dc14b23c29ec6.zip |
Removed couple of html named character references in
my last patch.
llvm-svn: 173856
Diffstat (limited to 'clang/lib/AST/CommentLexer.cpp')
-rw-r--r-- | clang/lib/AST/CommentLexer.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/AST/CommentLexer.cpp b/clang/lib/AST/CommentLexer.cpp index f1c23c6103e..464771340dd 100644 --- a/clang/lib/AST/CommentLexer.cpp +++ b/clang/lib/AST/CommentLexer.cpp @@ -66,8 +66,6 @@ StringRef Lexer::resolveHTMLNamedCharacterReference(StringRef Name) const { .Case("gt", ">") .Case("quot", "\"") .Case("apos", "\'") - .Case("minus", "-") - .Case("sim", "~") .Default(""); } |