diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-23 14:32:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-24 08:05:02 +0200 |
commit | 8770cd3894ce27ea7ceea3047af9899be57aae83 (patch) | |
tree | 7db4323241b0fd116c083bd13bea5ff926502b3f /compilerplugins/clang | |
parent | c65b2347648fc2c0752b981896cc6c2c7b7020f9 (diff) |
loplugin:unusedfields in sw/
Change-Id: I323a038e5581b00cd3a4ea2f362c66540377759e
Diffstat (limited to 'compilerplugins/clang')
-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 4b9b6aa93131..08f0b675ce6f 100755 --- a/compilerplugins/clang/unusedfields.py +++ b/compilerplugins/clang/unusedfields.py @@ -59,7 +59,8 @@ for d in definitionSet: if (srcLoc.startswith("external/")): continue # this is all representations of on-disk data structures - if (srcLoc == "sc/source/filter/inc/scflt.hxx"): + if (srcLoc.startswith("sc/source/filter/inc/scflt.hxx") + or srcLoc.startswith("sw/source/filter/ww8/")): continue tmp1set.add((clazz, srcLoc)) |