diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-11 11:22:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-11 11:59:18 +0200 |
commit | a3f3cead5d7fed99ea78c2a12b8671f18d156e23 (patch) | |
tree | b55d001bf5fa084c9df4b2d75595b061ecf14e53 /compilerplugins | |
parent | 3f5a9ca46efc801f79cdc00a3583646936bec689 (diff) |
loplugin: unused return values in desktop
Change-Id: Iec7a150c6bdb3b25fe24d711e3e453e1d8a5d26e
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/unusedmethods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/unusedmethods.py b/compilerplugins/clang/unusedmethods.py index aca8591fe0a8..48344279349a 100755 --- a/compilerplugins/clang/unusedmethods.py +++ b/compilerplugins/clang/unusedmethods.py @@ -255,7 +255,7 @@ for d in definitionSet: if d[0] == "void": continue # ignore UNO constructor method entrypoints - if "_get_implementation" in d[1]: + if "_get_implementation" in d[1] or "_getFactory" in d[1]: continue # the plugin can't see calls to these if "operator new" in d[1]: |