[cfe-commits] r55465 - /cfe/trunk/include/clang/AST/ASTContext.h
Argiris Kirtzidis
akyrtzi at gmail.com
Thu Aug 28 00:45:58 PDT 2008
Author: akirtzidis
Date: Thu Aug 28 02:45:57 2008
New Revision: 55465
URL: http://llvm.org/viewvc/llvm-project?rev=55465&view=rev
Log:
Fix compilation error on MSVC.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=55465&r1=55464&r2=55465&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Thu Aug 28 02:45:57 2008
@@ -284,7 +284,7 @@
/// 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);
More information about the cfe-commits
mailing list