TemplateArgumentListAST::lastToken().

This commit is contained in:
Roberto Raggi
2009-01-06 11:52:58 +01:00
parent dc08c07de0
commit 9666488fbe

View File

@@ -2375,9 +2375,8 @@ unsigned TemplateArgumentListAST::firstToken() const
unsigned TemplateArgumentListAST::lastToken() const
{
assert(0 && "review me");
for (const TemplateArgumentListAST *it = this; it; it = it->next) {
if (! it->next)
for (TemplateArgumentListAST *it = this; it; it = it->next) {
if (! it->next && it->template_argument)
return it->template_argument->lastToken();
}
return 0;