From 7611d2ebff6610fc62c7c4790d58a1b8147fc82d Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 26 Oct 2011 20:26:44 +1100 Subject: Fix warning from Clang. --- lexers/LexScriptol.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lexers/LexScriptol.cxx b/lexers/LexScriptol.cxx index 17184fc61..4b9192314 100644 --- a/lexers/LexScriptol.cxx +++ b/lexers/LexScriptol.cxx @@ -368,7 +368,7 @@ static void FoldSolDoc(unsigned int startPos, int length, int initStyle, int state = initStyle & 31; int spaceFlags = 0; int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, IsSolComment); - if ((state == SCE_SCRIPTOL_TRIPLE)) + if (state == SCE_SCRIPTOL_TRIPLE) indentCurrent |= SC_FOLDLEVELWHITEFLAG; char chNext = styler[startPos]; for (int i = startPos; i < lengthDoc; i++) -- cgit v1.2.3