aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/CommentLexer.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-01-30 00:10:09 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-01-30 00:10:09 +0000
commit4b1a0e4ab6648894c63bffe8564a669c1df3d683 (patch)
treeec6f06f4dc73a3211f6e2e41691408b76422d159 /lib/AST/CommentLexer.cpp
parentc33c9f7a9a955463b3418afd461774c726913800 (diff)
Removed couple of html named character references in
my last patch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173856 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CommentLexer.cpp')
-rw-r--r--lib/AST/CommentLexer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/AST/CommentLexer.cpp b/lib/AST/CommentLexer.cpp
index f1c23c6103..464771340d 100644
--- a/lib/AST/CommentLexer.cpp
+++ b/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("");
}