diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-25 13:51:15 +0200 |
---|---|---|
committer | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2016-07-12 22:06:26 -0400 |
commit | 892124072c459ddf818557a3eb0f78c6dc815a52 (patch) | |
tree | 53ce308ca491a221b2128377b7e9a80e65fdafdf /compilerplugins | |
parent | f8f5e69fcfb76df2bf52cf6dbf01a8c6e75a440d (diff) |
loplugin:unusedfields various
(cherry picked from commit 1f86864e97bea96fdc608f8c8b93024ad4684d51)
Change-Id: I59d9f7f73677358b4ae57efda965d43718bdf0d5
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/unusedfields.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compilerplugins/clang/unusedfields.py b/compilerplugins/clang/unusedfields.py index 47488887c4bb..9f3f16a9d4d8 100755 --- a/compilerplugins/clang/unusedfields.py +++ b/compilerplugins/clang/unusedfields.py @@ -68,7 +68,8 @@ for d in definitionSet: or srcLoc.startswith("vcl/source/filter/sgfbram.hxx") or srcLoc.startswith("vcl/inc/unx/XIM.h") or srcLoc.startswith("vcl/inc/unx/gtk/gloactiongroup.h") - or srcLoc.startswith("include/svl/svdde.hxx")): + or srcLoc.startswith("include/svl/svdde.hxx") + or srcLoc.startswith("lotuswordpro/source/filter/lwpsdwdrawheader.hxx")): continue tmp1set.add((clazz + " " + definitionToTypeMap[d], srcLoc)) |