From: Fariborz Jahanian Date: Tue, 4 Sep 2007 21:42:12 +0000 (+0000) Subject: Fixed a typo pointed out by Anders Calrsson. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8cd8c66914638429294ac510a4f15f43ba7f36a5;p=clang Fixed a typo pointed out by Anders Calrsson. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41716 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Parse/ParseObjc.cpp b/Parse/ParseObjc.cpp index 62149a040a..f82555a9b6 100644 --- a/Parse/ParseObjc.cpp +++ b/Parse/ParseObjc.cpp @@ -781,7 +781,7 @@ Parser::DeclTy *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) { } ConsumeToken(); // consume class-name; if (Tok.getKind() != tok::semi) - Diag(Tok, diag::err_expected_semi_after, "@synthesize"); + Diag(Tok, diag::err_expected_semi_after, "@compatibility_alias"); return 0; }