summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-09-20 11:17:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-09-20 15:53:50 +0200
commit92d4e9304cbe07115bfc6c6c0146943b7bcb7cf6 (patch)
treeaef9da8f3e43ac9d78b741dbea1f5124b21c61ee /compilerplugins
parentbe30b7616cef6efa607eba00f52c8192759f7099 (diff)
Replace SAL_FINAL with final in internal code
Change-Id: Ib0d3324d7021ba1a8ff9779807d0a900be5e6226 Reviewed-on: https://gerrit.libreoffice.org/60802 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'compilerplugins')
-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(