mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Patch for 72695 - Enable proper handling of template arguments during content assist.
This commit is contained in:
parent
93b18262ed
commit
246e84345a
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ public class GNUCPPSourceParser extends AbstractGNUSourceCodeParser {
|
|||
case IToken.tEOC:
|
||||
last = consume();
|
||||
last = consumeTemplateArguments(last, argumentList);
|
||||
if (last.getType() == IToken.tGT)
|
||||
if (last.getType() == IToken.tGT || last.getType() == IToken.tEOC)
|
||||
hasTemplateId = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue