Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2004-08-09 18:44:52 +0000
committerAndrew Niefer2004-08-09 18:44:52 +0000
commit0c2fcb2413ce546ebd8caad22b10b75d34ff1cb1 (patch)
treeeace947c1e20ee4d9784dfd54beb72f6fd521277
parenta3cae4a8e487f6b4f2eb83dc2bb15925d3c45acb (diff)
downloadorg.eclipse.cdt-0c2fcb2413ce546ebd8caad22b10b75d34ff1cb1.tar.gz
org.eclipse.cdt-0c2fcb2413ce546ebd8caad22b10b75d34ff1cb1.tar.xz
org.eclipse.cdt-0c2fcb2413ce546ebd8caad22b10b75d34ff1cb1.zip
fix bug 71669
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/Keywords.java1
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/token/SimpleToken.java2
2 files changed, 1 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/Keywords.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/Keywords.java
index 3a89e2dd8e3..9b8dd29b584 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/Keywords.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/Keywords.java
@@ -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$
}
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/token/SimpleToken.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/token/SimpleToken.java
index 0174a2ad5e5..00be00a7eb6 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/token/SimpleToken.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/token/SimpleToken.java
@@ -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;

Back to the top