diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2017-09-01 08:53:14 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2017-09-01 08:53:14 +1000 |
commit | 7b287ecd7f8527bb8f47e08090a0120ff418c730 (patch) | |
tree | a0c3341b6b256b6c58fc8703b16624dabac21f1c /lexers/LexCSS.cxx | |
parent | 940747df2c700f88e6c031526637d555d88d76e9 (diff) | |
download | scintilla-mirror-7b287ecd7f8527bb8f47e08090a0120ff418c730.tar.gz |
Use "Falls through" comments to avoid warnings from GCC 7.1.
Diffstat (limited to 'lexers/LexCSS.cxx')
-rw-r--r-- | lexers/LexCSS.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lexers/LexCSS.cxx b/lexers/LexCSS.cxx index 19345af54..01ca78687 100644 --- a/lexers/LexCSS.cxx +++ b/lexers/LexCSS.cxx @@ -347,6 +347,7 @@ static void ColouriseCssDoc(Sci_PositionU startPos, Sci_Position length, int ini case SCE_CSS_DEFAULT: if (isLessDocument) // give priority to pseudo elements break; + // Falls through. case SCE_CSS_VALUE: lastStateVar = sc.state; sc.SetState(SCE_CSS_VARIABLE); |