summaryrefslogtreecommitdiffstats
path: root/jvmfwk
diff options
context:
space:
mode:
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx
index 36dd03877c0d..3563e4ccb3b0 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx
@@ -265,7 +265,7 @@ FileHandleReader::readLine(OString * pLine)
{
case osl_File_E_PIPE: //HACK! for windows
nRead = 0;
- SAL_FALLTHROUGH;
+ [[fallthrough]];
case osl_File_E_None:
if (nRead == 0)
{
@@ -293,7 +293,7 @@ FileHandleReader::readLine(OString * pLine)
{
case 0x0D:
m_bLf = true;
- SAL_FALLTHROUGH;
+ [[fallthrough]];
case 0x0A:
*pLine += OString(m_aBuffer + nStart,
m_nIndex - 1 - nStart);
@@ -352,7 +352,7 @@ void AsynchReader::execute()
{
case osl_File_E_PIPE: //HACK! for windows
nRead = 0;
- SAL_FALLTHROUGH;
+ [[fallthrough]];
case osl_File_E_None:
break;
default: