From d5630adf33cc7d30a657e789e2bf0978028e0c1f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 3 Aug 2017 11:39:22 +0200 Subject: loplugin:checkunusedparams in various Change-Id: I4f54940a9ebdcd47776b2a5f7bae6e49b633ee44 Reviewed-on: https://gerrit.libreoffice.org/40706 Tested-by: Jenkins Reviewed-by: Noel Grandin --- compilerplugins/clang/checkunusedparams.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compilerplugins/clang/checkunusedparams.cxx') diff --git a/compilerplugins/clang/checkunusedparams.cxx b/compilerplugins/clang/checkunusedparams.cxx index 1618cee5be41..9772b2f90889 100644 --- a/compilerplugins/clang/checkunusedparams.cxx +++ b/compilerplugins/clang/checkunusedparams.cxx @@ -403,7 +403,8 @@ bool CheckUnusedParams::VisitFunctionDecl(FunctionDecl const * decl) { return true; // used in template magic if (fqn == "MtfRenderer::MtfRenderer" || fqn == "shell::sessioninstall::SyncDbusSessionHelper::SyncDbusSessionHelper" - || fqn == "dp_gui::LicenseDialog::LicenseDialog") + || fqn == "dp_gui::LicenseDialog::LicenseDialog" + || fqn == "(anonymous namespace)::OGLTransitionFactoryImpl::OGLTransitionFactoryImpl") return true; // FIXME if (fqn == "GtkSalDisplay::filterGdkEvent" || fqn == "SvXMLEmbeddedObjectHelper::ImplReadObject" -- cgit