diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-19 13:08:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-20 15:24:27 +0200 |
commit | a98d071d32ad15f928e262cdb721fd64032d46a2 (patch) | |
tree | 033d44c10405e6c4ca4257366d5d3bfef368eb59 /compilerplugins | |
parent | e97a2073b5c8a209f224c70b04e9a1cddab30add (diff) |
loplugin:useuniqueptr in HTMLTable
Change-Id: I46ece073659444e802bf480996a5797c9f1ec9e8
Reviewed-on: https://gerrit.libreoffice.org/57754
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/useuniqueptr.cxx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/compilerplugins/clang/useuniqueptr.cxx b/compilerplugins/clang/useuniqueptr.cxx index 88bbec4a9d59..4d5b7fc0733a 100644 --- a/compilerplugins/clang/useuniqueptr.cxx +++ b/compilerplugins/clang/useuniqueptr.cxx @@ -92,7 +92,18 @@ public: if (fn == SRCDIR "/comphelper/source/property/MasterPropertySet.cxx" || fn == SRCDIR "/comphelper/source/property/MasterPropertySetInfo.cxx") return; - + // SwTableLine::m_aBoxes + if (fn == SRCDIR "/sw/source/core/table/swtable.cxx") + return; + // SwHTMLParser::m_pFormImpl + if (fn == SRCDIR "/sw/source/filter/html/htmlform.cxx") + return; + // SwHTMLParser::m_pPendStack, pNext + if (fn == SRCDIR "/sw/source/filter/html/htmltab.cxx") + return; + // SaveLine::pBox, pNext + if (fn == SRCDIR "/sw/source/core/undo/untbl.cxx") + return; TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); } |