diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-23 15:35:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-24 10:48:08 +0200 |
commit | 8a592a5c6a0fbfb831569a7c03ac75b91ce013c4 (patch) | |
tree | 6c735f8cb55e4c6322e454dff5e42eb6c8d4dd9e /compilerplugins | |
parent | 65379d43e1f590274775449c8fb381ceb3bc0537 (diff) |
loplugin:useuniqueptr in rptui::Condition
Change-Id: I1197be1f7ea8b621dedef41fdd0a664cb6d90374
Reviewed-on: https://gerrit.libreoffice.org/57879
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/useuniqueptr.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compilerplugins/clang/useuniqueptr.cxx b/compilerplugins/clang/useuniqueptr.cxx index f41b55a5eb0f..ab254920b6c9 100644 --- a/compilerplugins/clang/useuniqueptr.cxx +++ b/compilerplugins/clang/useuniqueptr.cxx @@ -107,6 +107,9 @@ public: // RedlineInfo::pNextRedline if (fn == SRCDIR "/sw/source/filter/xml/XMLRedlineImportHelper.cxx") return; + // SfxObjectShell::pMedium + if (fn == SRCDIR "/sfx2/source/doc/objxtor.cxx") + return; TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); } |