diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 12:47:28 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 15:25:19 +0200 |
commit | 6618a3cd679bf76f8325ca38b934545b0d8f4c60 (patch) | |
tree | 5b65ddf83d6181af4f4d9ca19ce8907ab6207e5f /src/shared/cplusplus/CheckDeclaration.h | |
parent | 354b9712e4655040930a9f18de4e6b4c71dc42d9 (diff) | |
download | qt-creator-6618a3cd679bf76f8325ca38b934545b0d8f4c60.tar.gz |
Removed TemplateParameters.
Diffstat (limited to 'src/shared/cplusplus/CheckDeclaration.h')
-rw-r--r-- | src/shared/cplusplus/CheckDeclaration.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/shared/cplusplus/CheckDeclaration.h b/src/shared/cplusplus/CheckDeclaration.h index 562b170123..1ba825dfbe 100644 --- a/src/shared/cplusplus/CheckDeclaration.h +++ b/src/shared/cplusplus/CheckDeclaration.h @@ -61,13 +61,12 @@ public: CheckDeclaration(Semantic *semantic); virtual ~CheckDeclaration(); - void check(DeclarationAST *declaration, Scope *scope, TemplateParameters *templateParameters); + void check(DeclarationAST *declaration, Scope *scope); void check(CtorInitializerAST *ast, Scope *scope); protected: DeclarationAST *switchDeclaration(DeclarationAST *declaration); Scope *switchScope(Scope *scope); - TemplateParameters *switchTemplateParameters(TemplateParameters *templateParameters); void setDeclSpecifiers(Symbol *symbol, const FullySpecifiedType &declSpecifiers); @@ -117,7 +116,6 @@ private: private: DeclarationAST *_declaration; Scope *_scope; - TemplateParameters *_templateParameters; bool _checkAnonymousArguments: 1; }; |