diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-18 11:35:46 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-19 08:13:50 +0200 |
commit | 8a939de0e1bb62843f8801f526dbdb47125bba64 (patch) | |
tree | 0f3cf08b54c48db2c8a96a6fd647e0275fd29f3c /compilerplugins/clang | |
parent | 8991efcb3dd76a80ce6b3c2e7aa264355c0ef76e (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/clang')
-rw-r--r-- | compilerplugins/clang/useuniqueptr.cxx | 4 |
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()); } |