mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 10:46:02 +02:00
Bug 283082 - Add / to operator rule
This commit is contained in:
parent
b82a765a3f
commit
e1fc9fedd9
1 changed files with 2 additions and 2 deletions
|
@ -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
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -37,6 +37,6 @@ public class COperatorRule extends SingleCharRule
|
||||||
return (ch == ';' || ch == '.' || ch == ':' || ch == '=' || ch == '-'
|
return (ch == ';' || ch == '.' || ch == ':' || ch == '=' || ch == '-'
|
||||||
|| ch == '+' || ch == '\\' || ch == '*' || ch == '!' || ch == '%'
|
|| ch == '+' || ch == '\\' || ch == '*' || ch == '!' || ch == '%'
|
||||||
|| ch == '^' || ch == '&' || ch == '~' || ch == '>' || ch == '<')
|
|| ch == '^' || ch == '&' || ch == '~' || ch == '>' || ch == '<')
|
||||||
|| ch == '|';
|
|| ch == '|' || ch == '/';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue