From 92d4e9304cbe07115bfc6c6c0146943b7bcb7cf6 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 20 Sep 2018 11:17:00 +0200 Subject: 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 --- compilerplugins/clang/fragiledestructor.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compilerplugins') 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( -- cgit