From f9b6ff9584025987ee49bf44dd446e48fb449f91 Mon Sep 17 00:00:00 2001 From: Andrew Niefer Date: Tue, 27 Jul 2004 17:35:01 +0000 Subject: [PATCH] fix problem with Keywords.cpSEMI --- .../parser/org/eclipse/cdt/core/parser/Keywords.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 fb6a80b8bbe..3a89e2dd8e3 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 @@ -176,7 +176,7 @@ public class Keywords { public static final char[] cpCOLONCOLON = "::".toCharArray(); //$NON-NLS-1$ public static final char[] cpCOLON = ":".toCharArray(); //$NON-NLS-1$ - public static final char[] cpSEMI = ".toCharArray();".toCharArray(); //$NON-NLS-1$ + public static final char[] cpSEMI = ";".toCharArray(); //$NON-NLS-1$ public static final char[] cpCOMMA = ",".toCharArray(); //$NON-NLS-1$ public static final char[] cpQUESTION = "?".toCharArray(); //$NON-NLS-1$ public static final char[] cpLPAREN = "(".toCharArray(); //$NON-NLS-1$