aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r--include/clang/Parse/Action.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index 2243f99c3b..167b5af98e 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -24,6 +24,7 @@ namespace clang {
class ObjCDeclSpec;
class Declarator;
class AttributeList;
+ class FieldDeclarator;
// Parse.
class Scope;
class Action;
@@ -648,8 +649,9 @@ public:
return;
}
// ActOnAddObjCProperties - called to build one property AST
- virtual DeclTy *ActOnAddObjCProperties (SourceLocation AtLoc,
- DeclTy **allProperties, unsigned NumProperties, ObjCDeclSpec &DS) {
+ virtual DeclTy *ActOnAddObjCProperties (Scope *S, SourceLocation AtLoc,
+ FieldDeclarator *PropertyDeclarators, unsigned NumPropertyDeclarators,
+ ObjCDeclSpec &ODS) {
return 0;
}