diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-23 15:34:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-05 09:30:39 +0200 |
commit | d3b5038cbbe4adf642b3906da111a9f0d2c918a7 (patch) | |
tree | 9f025e613c8d33bfebcc08d89f7313817bd38bd6 /compilerplugins | |
parent | 0c58017468abb0ebee3088336e7e7a074e53edee (diff) |
loplugin:staticmethods
Change-Id: Iea68c4e466dd8e1cb7164959a680e5e52542166b
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/staticmethods.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compilerplugins/clang/staticmethods.cxx b/compilerplugins/clang/staticmethods.cxx index 7b1966001b37..2a68cae12279 100644 --- a/compilerplugins/clang/staticmethods.cxx +++ b/compilerplugins/clang/staticmethods.cxx @@ -159,7 +159,8 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl) || fqn == "connectivity::mozab::ProfileAccess::isProfileLocked" || startsWith(fqn, "SbxDecimal::") || fqn == "SbiDllMgr::Call" || fqn == "SbiDllMgr::FreeDll" - || fqn == "SfxApplication::InitializeDde" || fqn == "SfxApplication::RemoveDdeTopic") { + || fqn == "SfxApplication::InitializeDde" || fqn == "SfxApplication::RemoveDdeTopic" + || fqn == "ScannerManager::ReleaseData") { return true; } // debugging stuff @@ -185,7 +186,7 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl) return true; } -loplugin::Plugin::Registration<StaticMethods> X("staticmethods", false); +loplugin::Plugin::Registration<StaticMethods> X("staticmethods", false ); } |