loplugin:useuniquptr: Remove no longer needed blacklist entries

Change-Id: Ib372d93c5a6e7550ad0d3dc1017fe49d9059146c
This commit is contained in:
Stephan Bergmann 2017-04-12 10:55:45 +02:00
parent 4a2a03ff08
commit 24ccdd63b7

View File

@ -89,16 +89,11 @@ bool UseUniquePtr::VisitCXXDestructorDecl(const CXXDestructorDecl* destructorDec
if (aFileName.startswith(WORKDIR)) if (aFileName.startswith(WORKDIR))
return true; return true;
// weird stuff, passing pointers to internal members of struct // weird stuff, passing pointers to internal members of struct
if (aFileName.startswith(SRCDIR "/include/jvmfwk/framework.hxx")) if (aFileName == SRCDIR "/jvmfwk/source/framework.hxx")
return true;
if (aFileName.startswith(SRCDIR "/jvmfwk/"))
return true; return true;
// passes and stores pointers to member fields // passes and stores pointers to member fields
if (aFileName.startswith(SRCDIR "/sot/source/sdstor/stgdir.hxx")) if (aFileName.startswith(SRCDIR "/sot/source/sdstor/stgdir.hxx"))
return true; return true;
// passes and stores pointers to member fields
if (aFileName.startswith(SRCDIR "/desktop/source/migration/services/jvmfwk.cxx"))
return true;
// something platform-specific // something platform-specific
if (aFileName.startswith(SRCDIR "/hwpfilter/source/htags.h")) if (aFileName.startswith(SRCDIR "/hwpfilter/source/htags.h"))
return true; return true;