summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/fragiledestructor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/fragiledestructor.cxx')
-rw-r--r--compilerplugins/clang/fragiledestructor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/fragiledestructor.cxx b/compilerplugins/clang/fragiledestructor.cxx
index 74f32aa165f6..1631cb30c1e9 100644
--- a/compilerplugins/clang/fragiledestructor.cxx
+++ b/compilerplugins/clang/fragiledestructor.cxx
@@ -95,7 +95,7 @@ bool FragileDestructor::VisitCXXMemberCallExpr(const CXXMemberCallExpr* callExpr
return true;
report(
DiagnosticsEngine::Warning,
- "calling virtual method from destructor, either make the virtual method SAL_FINAL, or make this class SAL_FINAL",
+ "calling virtual method from destructor, either make the virtual method final, or make this class final",
compat::getBeginLoc(callExpr))
<< callExpr->getSourceRange();
report(