diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-24 18:54:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-25 08:25:09 +0200 |
commit | 234884c09db0301b9f0b3336f9b0dbb9523ee005 (patch) | |
tree | 08b05acb411b0aaa21de8576d20b73a50a31bbcc /compilerplugins | |
parent | 85c758a4618d3a485f778bda5b20a8221161e399 (diff) |
loplugin:unusedfields in include/sot,include/svl,include/svtools
Change-Id: Ia2dd13c2c48b127ab85311a668fa1f37608d360a
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 7fc6d4aeb2e4..47488887c4bb 100755 --- a/compilerplugins/clang/unusedfields.py +++ b/compilerplugins/clang/unusedfields.py @@ -67,7 +67,8 @@ for d in definitionSet: or srcLoc.startswith("vcl/source/filter/sgvmain.hxx") 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("vcl/inc/unx/gtk/gloactiongroup.h") + or srcLoc.startswith("include/svl/svdde.hxx")): continue tmp1set.add((clazz + " " + definitionToTypeMap[d], srcLoc)) |