summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/useuniqueptr.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-07-23 09:24:24 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-07-24 08:32:56 +0200
commitdba5dccfc5606ed6c6c888524460c9546143aaef (patch)
treed882efce0801e2f202bced80884a53582f3bd9cc /compilerplugins/clang/useuniqueptr.cxx
parentloplugin:unusedfields,can-be-const in xmlreader (diff)
downloadcore-dba5dccfc5606ed6c6c888524460c9546143aaef.tar.gz
core-dba5dccfc5606ed6c6c888524460c9546143aaef.zip
loplugin:useuniqueptr in SwHTMLWriter
Change-Id: I67f3dd615e798f8ac865b57332f6153530d81929 Reviewed-on: https://gerrit.libreoffice.org/57863 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang/useuniqueptr.cxx')
-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 4d5b7fc0733a..c7f6d7a2444c 100644
--- a/compilerplugins/clang/useuniqueptr.cxx
+++ b/compilerplugins/clang/useuniqueptr.cxx
@@ -104,6 +104,9 @@ public:
// SaveLine::pBox, pNext
if (fn == SRCDIR "/sw/source/core/undo/untbl.cxx")
return;
+ // RedlineInfo::pNextRedline
+ if (fn == SRCDIR "/sw/source/filter/xml/XMLRedlineImportHelper.cxx")
+ return;
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}