summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-06-30 12:53:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-06-30 12:53:40 +0200
commit2ea01fb9002c4aceba724cabad663d6026381c0c (patch)
tree1ca7b124986a0f027190cf504b2929fcd91d3b8d /compilerplugins
parentdc93e3330e143113df6cf74861315c15a80324b5 (diff)
loplugin:badstatics: further (Linux-only) static only found with libc++
Change-Id: I048212e3feb3f548d5a65940dd71ccb71cade778
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/badstatics.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/compilerplugins/clang/badstatics.cxx b/compilerplugins/clang/badstatics.cxx
index 4904e1a31d3e..12e6b931b3c6 100644
--- a/compilerplugins/clang/badstatics.cxx
+++ b/compilerplugins/clang/badstatics.cxx
@@ -148,6 +148,8 @@ public:
|| name == "theAddInAsyncTbl"
// sc/source/core/tool/adiasync.cxx, would leak
// ScAddInAsync* keys if that set is not empty at exit
+ || name == "g_aWindowList"
+ //vcl/unx/gtk/a11y/atkutil.cxx, asserted empty at exit
) // these variables appear unproblematic
{
return true;