1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-08 02:53:12 +02:00

Follow up for 195943, content assist for expressions with consecutive left parenthesis.

This commit is contained in:
Markus Schorn 2007-07-13 07:25:19 +00:00
parent 212cb73714
commit 8fc042bfd7

View file

@ -2442,6 +2442,9 @@ public abstract class AbstractGNUSourceCodeParser implements ISourceCodeParser {
case IToken.t_volatile:
case IToken.t_restrict:
return true;
case IToken.tCOMPLETION:
return true;
}
return false;