summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-07-18 11:35:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-07-19 08:13:50 +0200
commit8a939de0e1bb62843f8801f526dbdb47125bba64 (patch)
tree0f3cf08b54c48db2c8a96a6fd647e0275fd29f3c /compilerplugins
parent8991efcb3dd76a80ce6b3c2e7aa264355c0ef76e (diff)
loplugin:useuniqueptr in SwUndoTableMerge
Change-Id: I0c528c2b12d219f37a2c2fdf2211fce3c51ad9e4 Reviewed-on: https://gerrit.libreoffice.org/57688 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/useuniqueptr.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/compilerplugins/clang/useuniqueptr.cxx b/compilerplugins/clang/useuniqueptr.cxx
index df087bfeec11..3f563699e1f6 100644
--- a/compilerplugins/clang/useuniqueptr.cxx
+++ b/compilerplugins/clang/useuniqueptr.cxx
@@ -85,6 +85,10 @@ public:
// ScTabView::pDrawActual and pDrawOld
if (fn == SRCDIR "/sc/source/ui/view/tabview5.cxx")
return;
+ // SwHTMLParser::m_pPendStack
+ if (fn == SRCDIR "/sw/source/filter/html/htmlcss1.cxx")
+ return;
+
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}