mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
fix bug 71669
This commit is contained in:
parent
a3cae4a8e4
commit
0c2fcb2413
2 changed files with 1 additions and 2 deletions
|
@ -225,5 +225,4 @@ public class Keywords {
|
|||
public static final char[] cpDIV = "/".toCharArray(); //$NON-NLS-1$
|
||||
public static final char[] cpPOUND = "#".toCharArray(); //$NON-NLS-1$
|
||||
public static final char[] cpPOUNDPOUND = "##".toCharArray(); //$NON-NLS-1$
|
||||
public static final char[] cpEQUALS = "=".toCharArray(); //$NON-NLS-1$
|
||||
}
|
||||
|
|
|
@ -368,7 +368,7 @@ public class SimpleToken extends AbstractToken implements IToken {
|
|||
case IToken.tCOMPL : return Keywords.cpCOMPL;
|
||||
case IToken.tNOTEQUAL : return Keywords.cpNOTEQUAL;
|
||||
case IToken.tNOT : return Keywords.cpNOT;
|
||||
case IToken.tEQUAL : return Keywords.cpEQUALS;
|
||||
case IToken.tEQUAL : return Keywords.cpEQUAL;
|
||||
case IToken.tASSIGN : return Keywords.cpASSIGN;
|
||||
case IToken.tSHIFTL : return Keywords.cpSHIFTL;
|
||||
case IToken.tLTEQUAL : return Keywords.cpLTEQUAL;
|
||||
|
|
Loading…
Add table
Reference in a new issue