diff options
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 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)) |