diff options
author | nyamatongwe <unknown> | 2011-12-14 10:58:51 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-12-14 10:58:51 +1100 |
commit | 23978c867efd8625a9fd0924e1cff09a56884c25 (patch) | |
tree | cadc39165b19bfb00bba724c8e07abce30bdffb3 | |
parent | 22ca86a1c46ed1673bba3859a72d2d664723dd2f (diff) | |
download | scintilla-mirror-23978c867efd8625a9fd0924e1cff09a56884c25.tar.gz |
Remove duplicated clause as this caused warning from cppcheck.
-rw-r--r-- | lexers/LexMMIXAL.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexMMIXAL.cxx b/lexers/LexMMIXAL.cxx index 59bb9fd41..43361d429 100644 --- a/lexers/LexMMIXAL.cxx +++ b/lexers/LexMMIXAL.cxx @@ -38,7 +38,7 @@ inline bool isMMIXALOperator(char ch) { if (isascii(ch) && isalnum(ch)) return false; if (ch == '+' || ch == '-' || ch == '|' || ch == '^' || - ch == '*' || ch == '/' || ch == '/' || + ch == '*' || ch == '/' || ch == '%' || ch == '<' || ch == '>' || ch == '&' || ch == '~' || ch == '$' || ch == ',' || ch == '(' || ch == ')' || |