summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-07-16 14:40:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-07-17 12:19:14 +0200
commit011c6c719f77181f042c68ba92e38847e39c8ca1 (patch)
tree73d90f4dc49b08f8d94ab1fdf36e77417d4c2b03 /compilerplugins
parent5c6bce38a01b21403a603acd3148cf3bbb4c685f (diff)
loplugin:useuniqueptr in SwHTMLWriter
Change-Id: I4802e6502addce96bff4831598e852e4fe673af4 Reviewed-on: https://gerrit.libreoffice.org/57521 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/useuniqueptr.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/compilerplugins/clang/useuniqueptr.cxx b/compilerplugins/clang/useuniqueptr.cxx
index 1cb392f718f8..a9f60c47039f 100644
--- a/compilerplugins/clang/useuniqueptr.cxx
+++ b/compilerplugins/clang/useuniqueptr.cxx
@@ -79,6 +79,9 @@ public:
// SwLineLayout::m_pNext
if (fn == SRCDIR "/sw/source/core/text/porlay.cxx")
return;
+ // ODatabaseExport::m_aDestColumns
+ if (fn == SRCDIR "/dbaccess/source/ui/misc/DExport.cxx")
+ return;
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}