diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-06-17 18:05:57 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-06-17 18:05:57 +0000 |
| commit | 5696e7badf181efd93355bd55718f422252362b0 (patch) | |
| tree | 9562bea195fea80d837014b9707e87a8fab94013 /clang/lib/Sema/Sema.h | |
| parent | 5e4188f1acd814dff1f2155c05576f8892223c40 (diff) | |
| download | bcm5719-llvm-5696e7badf181efd93355bd55718f422252362b0.tar.gz bcm5719-llvm-5696e7badf181efd93355bd55718f422252362b0.zip | |
Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl.
Patch by David Chisnall!
llvm-svn: 52422
Diffstat (limited to 'clang/lib/Sema/Sema.h')
| -rw-r--r-- | clang/lib/Sema/Sema.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 64ab9117330..b3b5941dc3a 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -277,7 +277,7 @@ private: /// Helpers for dealing with function parameters bool CheckParmsForFunctionDef(FunctionDecl *FD); - ParmVarDecl *CreateImplicitParameter(Scope *S, IdentifierInfo *Id, + ImplicitParamDecl *CreateImplicitParameter(Scope *S, IdentifierInfo *Id, SourceLocation IdLoc, QualType Type); void CheckCXXDefaultArguments(FunctionDecl *FD); void CheckExtraCXXDefaultArguments(Declarator &D); |

