diff options
Diffstat (limited to 'configmgr/source/xcsparser.cxx')
-rw-r--r-- | configmgr/source/xcsparser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/xcsparser.cxx b/configmgr/source/xcsparser.cxx index 271d617e5019..411da6ca7915 100644 --- a/configmgr/source/xcsparser.cxx +++ b/configmgr/source/xcsparser.cxx @@ -158,7 +158,7 @@ bool XcsParser::startElement( state_ = STATE_TEMPLATES; return true; } - SAL_FALLTHROUGH; + [[fallthrough]]; case STATE_TEMPLATES_DONE: if (nsId == xmlreader::XmlReader::NAMESPACE_NONE && name.equals("component")) @@ -188,7 +188,7 @@ bool XcsParser::startElement( } break; } - SAL_FALLTHROUGH; + [[fallthrough]]; case STATE_COMPONENT: assert(!elements_.empty()); switch (elements_.top().node->kind()) { |