diff options
author | nyamatongwe <devnull@localhost> | 2008-12-23 11:33:11 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-12-23 11:33:11 +0000 |
commit | 261e4529ceb56bd8a0ab00c5505174968f0ff245 (patch) | |
tree | 2536da04441658778684c6819358ae79c7bb2b7f /src/LexOthers.cxx | |
parent | 99eb09be54a94851377a8b086543da8d1730fb1b (diff) | |
download | scintilla-mirror-261e4529ceb56bd8a0ab00c5505174968f0ff245.tar.gz |
Avoid warnings with gcc 4.3
Diffstat (limited to 'src/LexOthers.cxx')
-rw-r--r-- | src/LexOthers.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx index 24eee96a3..0db6e8f2c 100644 --- a/src/LexOthers.cxx +++ b/src/LexOthers.cxx @@ -770,7 +770,7 @@ static void FoldPropsDoc(unsigned int startPos, int length, int, WordList *[], A lev = SC_FOLDLEVELBASE; } int flagsNext = styler.LevelAt(lineCurrent); - styler.SetLevel(lineCurrent, lev | flagsNext & ~SC_FOLDLEVELNUMBERMASK); + styler.SetLevel(lineCurrent, lev | (flagsNext & ~SC_FOLDLEVELNUMBERMASK)); } static void ColouriseMakeLine( |