diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 11:23:35 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 16:20:09 +0100 |
commit | 36a0ea2bcbe306ef845549defb894f479b47a9a1 (patch) | |
tree | 88252dd63e214dacb9683092876081e1273e4fc4 /src/libs/cplusplus/CheckUndefinedSymbols.cpp | |
parent | 4089c906fa0fb2988e73c23d8eeb5a15d8b8629f (diff) | |
download | qt-creator-36a0ea2bcbe306ef845549defb894f479b47a9a1.tar.gz |
Removed DeclarationListAST node.
Done with Erik Verbruggen
Diffstat (limited to 'src/libs/cplusplus/CheckUndefinedSymbols.cpp')
-rw-r--r-- | src/libs/cplusplus/CheckUndefinedSymbols.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/cplusplus/CheckUndefinedSymbols.cpp b/src/libs/cplusplus/CheckUndefinedSymbols.cpp index 6262dcebaa..30a08ea884 100644 --- a/src/libs/cplusplus/CheckUndefinedSymbols.cpp +++ b/src/libs/cplusplus/CheckUndefinedSymbols.cpp @@ -104,7 +104,7 @@ bool CheckUndefinedSymbols::isType(const QByteArray &name) const TemplateDeclarationAST *templateDeclaration = _templateDeclarationStack.at(i); for (DeclarationListAST *it = templateDeclaration->template_parameters; it; it = it->next) { - DeclarationAST *templateParameter = it->declaration; + DeclarationAST *templateParameter = it->value; if (templateParameterName(templateParameter) == name) return true; |