From: Fariborz Jahanian Date: Mon, 29 Apr 2013 15:35:35 +0000 (+0000) Subject: Fix a typo in a parse assert. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df1fdfd093e4e8d07813b5d86c22bb50a82e6714;p=clang Fix a typo in a parse assert. Patch by Alex Denisov. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@180712 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseObjc.cpp b/lib/Parse/ParseObjc.cpp index aa9c05ec7f..4a572f1993 100644 --- a/lib/Parse/ParseObjc.cpp +++ b/lib/Parse/ParseObjc.cpp @@ -1682,7 +1682,7 @@ Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) { /// Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) { assert(Tok.isObjCAtKeyword(tok::objc_synthesize) && - "ParseObjCPropertyDynamic(): Expected '@synthesize'"); + "ParseObjCPropertySynthesize(): Expected '@synthesize'"); ConsumeToken(); // consume synthesize while (true) {