1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Drop three-way comparison from C parser, this is C++ only.

This commit is contained in:
Igor V. Kovalenko 2023-01-26 11:26:31 +03:00 committed by Jonah Graham
parent a90cbe1736
commit 2776d17014

View file

@ -548,7 +548,6 @@ public class GNUCSourceParser extends AbstractGNUSourceCodeParser {
break;
case IToken.tEQUAL:
case IToken.tNOTEQUAL:
case IToken.tTHREEWAYCOMPARISON:
lastOperator = new BinaryOperator(lastOperator, lastExpression, lt1, 80, 81);
break;
case IToken.tGT: