diff options
Diffstat (limited to 'dom/xslt/xpath/txLocationStep.cpp')
-rw-r--r-- | dom/xslt/xpath/txLocationStep.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/xslt/xpath/txLocationStep.cpp b/dom/xslt/xpath/txLocationStep.cpp index f945b750fe..0625d3944f 100644 --- a/dom/xslt/xpath/txLocationStep.cpp +++ b/dom/xslt/xpath/txLocationStep.cpp @@ -42,7 +42,7 @@ LocationStep::evaluate(txIEvalContext* aContext, txAExprResult** aResult) if (!walker.moveToParent()) { break; } - MOZ_FALLTHROUGH; + [[fallthrough]]; } case ANCESTOR_OR_SELF_AXIS: { @@ -74,7 +74,7 @@ LocationStep::evaluate(txIEvalContext* aContext, txAExprResult** aResult) if (mNodeTest->matches(walker.getCurrentPosition(), aContext)) { nodes->append(walker.getCurrentPosition()); } - MOZ_FALLTHROUGH; + [[fallthrough]]; } case DESCENDANT_AXIS: { |