summaryrefslogtreecommitdiff
path: root/basic/source/comp/loops.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/comp/loops.cxx')
-rw-r--r--basic/source/comp/loops.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/basic/source/comp/loops.cxx b/basic/source/comp/loops.cxx
index ae973d4677ad..4eaf4f86b7f7 100644
--- a/basic/source/comp/loops.cxx
+++ b/basic/source/comp/loops.cxx
@@ -546,7 +546,8 @@ void SbiParser::Resume()
{
aGen.Gen( SbiOpcode::RESUME_, 0 );
break;
- } // fall through
+ }
+ SAL_FALLTHROUGH;
case SYMBOL:
if( MayBeLabel() )
{
@@ -554,7 +555,8 @@ void SbiParser::Resume()
aGen.Gen( SbiOpcode::RESUME_, nLbl );
Next();
break;
- } // fall through
+ }
+ SAL_FALLTHROUGH;
default:
Error( ERRCODE_BASIC_LABEL_EXPECTED );
}