diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-08-28 07:45:57 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-08-28 07:45:57 +0000 |
commit | 77a49f6b1e5741f6bda71eb7837b43343925027b (patch) | |
tree | a25d2ebede94d75c5d0cb7f35ca3a1976b48815c | |
parent | 56b98719b0dbebb33cb228afa888c47156be2381 (diff) |
Fix compilation error on MSVC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55465 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ASTContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index 85f9d8bca7..95073bc862 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -284,7 +284,7 @@ public: /// this method declaration. If non-NULL, Container must be either /// an ObjCCategoryImplDecl or ObjCImplementationDecl; it should /// only be NULL when getting encodings for protocol properties. - void getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *Decl, + void getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD, const Decl *Container, std::string &S); |