From 68a571aeb5ea01fe2a10583c45efc109e8ae9968 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 1 Mar 2012 23:02:30 +0200 Subject: WaE: equality comparison with extraneous parentheses --- svtools/source/edit/syntaxhighlight.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=='-') -- cgit