]> granicus.if.org Git - clang/commitdiff
fix typo.
authorZhongxing Xu <xuzhongxing@gmail.com>
Mon, 8 Dec 2008 05:12:38 +0000 (05:12 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Mon, 8 Dec 2008 05:12:38 +0000 (05:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60686 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseExprCXX.cpp

index c126b433dd7a4594c095e07f229a8aa83e671325..cf7abd6e7967708f5d4b4bfe9676de69a852517a 100644 (file)
@@ -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)))