diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-03-01 23:02:30 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-03-01 23:02:30 +0200 |
commit | 68a571aeb5ea01fe2a10583c45efc109e8ae9968 (patch) | |
tree | 24a707d847b9cc56b402c0290cc75c3f96a87a24 | |
parent | 8a83ce2e7e6950450b63a5f189a48c8a4820b6d1 (diff) |
WaE: equality comparison with extraneous parentheses
-rw-r--r-- | svtools/source/edit/syntaxhighlight.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/edit/syntaxhighlight.cxx b/svtools/source/edit/syntaxhighlight.cxx index 0e5beffa5141..d4caa88c511f 100644 --- a/svtools/source/edit/syntaxhighlight.cxx +++ b/svtools/source/edit/syntaxhighlight.cxx @@ -477,7 +477,7 @@ sal_Bool SimpleTokenizer_Impl::getNextToken( /*out*/TokenTypes& reType, } reType = TT_PARAMETER; } - else if ((c=='-')) + else if (c=='-') { sal_Unicode cPeekNext = peekChar(); if (cPeekNext=='-') |