From: Zhongxing Xu Date: Mon, 8 Dec 2008 05:12:38 +0000 (+0000) Subject: fix typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00c028b4a127c98cc617811b9d1e72bd7d641895;p=clang fix typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60686 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseExprCXX.cpp b/lib/Parse/ParseExprCXX.cpp index c126b433dd..cf7abd6e79 100644 --- a/lib/Parse/ParseExprCXX.cpp +++ b/lib/Parse/ParseExprCXX.cpp @@ -38,7 +38,7 @@ bool Parser::MaybeParseCXXScopeSpecifier(CXXScopeSpec &SS) { (Tok.isNot(tok::identifier) || NextToken().isNot(tok::coloncolon))) return false; - // ::new and ::delete aren'T nested-name-specifiers, so parsing the :: as + // ::new and ::delete aren't nested-name-specifiers, so parsing the :: as // a scope specifier only makes things more complicated. if (Tok.is(tok::coloncolon) && (NextToken().is(tok::kw_new) || NextToken().is(tok::kw_delete)))