diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-08-26 11:41:20 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-08-26 11:41:20 +0200 |
commit | fc1b435ab4982ac96324591f6215fd2a3adb0ca0 (patch) | |
tree | 66e1950eb46ad743026e97d2dff85b90335a4bba /src/shared/cplusplus/Semantic.h | |
parent | f137bd3b83dbb57e029a4bdd58e8dc7b34934d39 (diff) | |
download | qt-creator-fc1b435ab4982ac96324591f6215fd2a3adb0ca0.tar.gz |
Introduced CPlusPlus::TemplateArguments and fixed a possible mem-leak when using template members.
Diffstat (limited to 'src/shared/cplusplus/Semantic.h')
-rw-r--r-- | src/shared/cplusplus/Semantic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/Semantic.h b/src/shared/cplusplus/Semantic.h index c6c75280bc..8a0df9a111 100644 --- a/src/shared/cplusplus/Semantic.h +++ b/src/shared/cplusplus/Semantic.h @@ -78,7 +78,7 @@ public: FullySpecifiedType check(ExpressionAST *expression, Scope *scope); - void check(DeclarationAST *declaration, Scope *scope, Scope *templateParameters = 0); + void check(DeclarationAST *declaration, Scope *scope, TemplateParameters *templateParameters = 0); void check(StatementAST *statement, Scope *scope); |