From: Fariborz Jahanian Date: Wed, 30 Jan 2013 00:10:09 +0000 (+0000) Subject: Removed couple of html named character references in X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b1a0e4ab6648894c63bffe8564a669c1df3d683;p=clang 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 --- 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(""); }