Skip to main content
summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAnton Leherbauer2009-08-20 09:44:20 +0000
committerAnton Leherbauer2009-08-20 09:44:20 +0000
commit683416a2c5b0e9aa70a6b545ca2db718ee328fc0 (patch)
treead4d9819dc90752410db821948ad3c88bf957f2c /core
parente2e88cfedbe510bf7c9c356267425b6d77083b24 (diff)
downloadorg.eclipse.cdt-683416a2c5b0e9aa70a6b545ca2db718ee328fc0.tar.gz
org.eclipse.cdt-683416a2c5b0e9aa70a6b545ca2db718ee328fc0.tar.xz
org.eclipse.cdt-683416a2c5b0e9aa70a6b545ca2db718ee328fc0.zip
Bug 283082 - Add / to operator rule
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java
index b54509e37e0..a3701c6a2f9 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/COperatorRule.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005 QNX Software Systems and others.
+ * Copyright (c) 2005, 2009 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -37,6 +37,6 @@ public class COperatorRule extends SingleCharRule
return (ch == ';' || ch == '.' || ch == ':' || ch == '=' || ch == '-'
|| ch == '+' || ch == '\\' || ch == '*' || ch == '!' || ch == '%'
|| ch == '^' || ch == '&' || ch == '~' || ch == '>' || ch == '<')
- || ch == '|';
+ || ch == '|' || ch == '/';
}
}

Back to the top