diff options
Diffstat (limited to 'toolkit/components/places/nsNavHistoryResult.cpp')
-rw-r--r-- | toolkit/components/places/nsNavHistoryResult.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/components/places/nsNavHistoryResult.cpp b/toolkit/components/places/nsNavHistoryResult.cpp index 64d06308fd..f07487dfcd 100644 --- a/toolkit/components/places/nsNavHistoryResult.cpp +++ b/toolkit/components/places/nsNavHistoryResult.cpp @@ -2452,7 +2452,7 @@ nsNavHistoryQueryResultNode::OnVisit(nsIURI* aURI, int64_t aVisitId, // Fall through to check the time, if the time is not present it will // still match. - MOZ_FALLTHROUGH; + [[fallthrough]]; } case QUERYUPDATE_TIME: { @@ -2479,7 +2479,7 @@ nsNavHistoryQueryResultNode::OnVisit(nsIURI* aURI, int64_t aVisitId, } // Now we know that our visit satisfies the time range, fall through to // the QUERYUPDATE_SIMPLE case below. - MOZ_FALLTHROUGH; + [[fallthrough]]; } case QUERYUPDATE_SIMPLE: { @@ -2917,7 +2917,7 @@ nsNavHistoryQueryResultNode::OnItemChanged(int64_t aItemId, // folders titles. if (mOptions->ResultType() != nsINavHistoryQueryOptions::RESULTS_AS_TAG_QUERY) return NS_OK; - MOZ_FALLTHROUGH; + [[fallthrough]]; default: (void)Refresh(); } |