summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-03-01 23:02:30 +0200
committerTor Lillqvist <tml@iki.fi>2012-03-01 23:02:30 +0200
commit68a571aeb5ea01fe2a10583c45efc109e8ae9968 (patch)
tree24a707d847b9cc56b402c0290cc75c3f96a87a24 /svtools
parentMore IMPL_LINK_NOARG fixes for clang (diff)
downloadcore-68a571aeb5ea01fe2a10583c45efc109e8ae9968.tar.gz
core-68a571aeb5ea01fe2a10583c45efc109e8ae9968.zip
WaE: equality comparison with extraneous parentheses
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/edit/syntaxhighlight.cxx2
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=='-')