summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-09-01 08:57:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-09-01 11:20:17 +0200
commitad4d09db4a359748f5ecf5e78a3513ef3878e9c1 (patch)
tree7085515b695ac84b76c59bf7471c53e0b664a1cf /sax
parentb3e7d61278701ffcc5330e8d65cf9e78991a1754 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: Ic5abfe2d047750d8dfd3ae8cc733fa15d34ea505 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121432 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax')
-rw-r--r--sax/source/fastparser/fastparser.cxx1
-rw-r--r--sax/source/tools/fastserializer.cxx4
2 files changed, 1 insertions, 4 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx
index ce8d8cc16054..86bd8a734b63 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -407,7 +407,6 @@ ParserData::ParserData()
Entity::Entity(const ParserData& rData)
: ParserData(rData)
, mnProducedEventsSize(0)
- , mxProducedEvents()
, mbEnableThreads(false)
, mpParser(nullptr)
{
diff --git a/sax/source/tools/fastserializer.cxx b/sax/source/tools/fastserializer.cxx
index 7c4b22a2d9a3..de035f4717fd 100644
--- a/sax/source/tools/fastserializer.cxx
+++ b/sax/source/tools/fastserializer.cxx
@@ -55,9 +55,7 @@ const char sXmlHeader[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\
namespace sax_fastparser {
FastSaxSerializer::FastSaxSerializer( const css::uno::Reference< css::io::XOutputStream >& xOutputStream )
- : maCachedOutputStream()
- , maMarkStack()
- , mbMarkStackEmpty(true)
+ : mbMarkStackEmpty(true)
, mpDoubleStr(nullptr)
, mnDoubleStrCapacity(RTL_STR_MAX_VALUEOFDOUBLE)
, mbXescape(true)