diff options
author | nyamatongwe <devnull@localhost> | 2011-12-14 10:58:51 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-12-14 10:58:51 +1100 |
commit | e7ecdbe0acb3c9d7b495f02b511919ae275b26cb (patch) | |
tree | ebcf132fd3806d1a6207c4432326cb3ad1881f1b | |
parent | f8e5188bacb77be060bf116c0cfc44193e9b0200 (diff) | |
download | scintilla-mirror-e7ecdbe0acb3c9d7b495f02b511919ae275b26cb.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 == ')' || |