tdf#114596 compilerplugins: add exception to [loplugin:refcounting]
Change-Id: I994653dc4bf858bdea7ba60f40da0ee3c8d028e4
This commit is contained in:
@@ -142,6 +142,10 @@ bool containsXInterfaceSubclass(const clang::Type* pType0) {
|
||||
if (isDerivedFrom(pRecordDecl, [](Decl const * decl) -> bool { return bool(loplugin::DeclCheck(decl).Class("XPropertyList").GlobalNamespace()); })) { // module svx
|
||||
return false;
|
||||
}
|
||||
// tdf#114596
|
||||
if (isDerivedFrom(pRecordDecl, [](Decl const * decl) -> bool { return bool(loplugin::DeclCheck(decl).Class("OBookmarkContainer").Namespace("dbaccess").GlobalNamespace()); })) { // module dbaccess
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (pRecordDecl) {
|
||||
const ClassTemplateSpecializationDecl* pTemplate = dyn_cast<ClassTemplateSpecializationDecl>(pRecordDecl);
|
||||
|
Reference in New Issue
Block a user