Fixed local usage highlighting for ObjC message parameters.

This commit is contained in:
Erik Verbruggen
2010-02-10 22:45:28 +01:00
parent d7994a886f
commit 4df9b37542
3 changed files with 8 additions and 3 deletions

View File

@@ -411,6 +411,12 @@ protected:
accept(ast->argument_list);
return false;
}
virtual bool visit(ObjCMessageArgumentDeclarationAST *ast)
{
accept(ast->param_name);
return false;
}
};