AST generation for objc2's property declarations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49565 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h
index 1626f0d..cf22f68 100644
--- a/lib/Sema/Sema.h
+++ b/lib/Sema/Sema.h
@@ -643,11 +643,10 @@
DeclTy **allMethods = 0, unsigned allNum = 0,
DeclTy **allProperties = 0, unsigned pNum = 0);
- virtual DeclTy *ActOnAddObjCProperties(SourceLocation AtLoc,
- DeclTy **allProperties,
+ virtual DeclTy *ActOnAddObjCProperties(Scope *S, SourceLocation AtLoc,
+ FieldDeclarator *allProperties,
unsigned NumProperties,
- ObjCDeclSpec &DS);
-
+ ObjCDeclSpec &ODS);
virtual DeclTy *ActOnMethodDeclaration(
SourceLocation BeginLoc, // location of the + or -.
SourceLocation EndLoc, // location of the ; or {.