summaryrefslogtreecommitdiff
path: root/basegfx/source/range
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-08-27 15:26:05 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-08-27 21:24:20 +0200
commit8024118d5c9ac964e35e8c4163ca14a5cd78cc3d (patch)
tree8dd3ef5a8f61723fc3bf3e1d8c5f37a0204bc825 /basegfx/source/range
parent707ac13a3f700c8e4a7f08bdcd5d5321d0a28bc5 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: Ibeff6e5cbc20ab86b1e9cb96292acb340849ede3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121149 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basegfx/source/range')
-rw-r--r--basegfx/source/range/b2dpolyrange.cxx5
-rw-r--r--basegfx/source/range/b2drange.cxx4
-rw-r--r--basegfx/source/range/b2drangeclipper.cxx1
3 files changed, 2 insertions, 8 deletions
diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx
index d7d0d61de061..beb506fc8e4d 100644
--- a/basegfx/source/range/b2dpolyrange.cxx
+++ b/basegfx/source/range/b2dpolyrange.cxx
@@ -31,10 +31,7 @@ namespace basegfx
class ImplB2DPolyRange
{
public:
- ImplB2DPolyRange() :
- maBounds(),
- maRanges(),
- maOrient()
+ ImplB2DPolyRange()
{}
bool operator==(const ImplB2DPolyRange& rRHS) const
diff --git a/basegfx/source/range/b2drange.cxx b/basegfx/source/range/b2drange.cxx
index 55b545933d88..be025cc64b1d 100644
--- a/basegfx/source/range/b2drange.cxx
+++ b/basegfx/source/range/b2drange.cxx
@@ -23,9 +23,7 @@
namespace basegfx
{
- B2DRange::B2DRange( const B2IRange& rRange ) :
- maRangeX(),
- maRangeY()
+ B2DRange::B2DRange( const B2IRange& rRange )
{
if( !rRange.isEmpty() )
{
diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx
index 5dc452728772..2920cda5ebd0 100644
--- a/basegfx/source/range/b2drangeclipper.cxx
+++ b/basegfx/source/range/b2drangeclipper.cxx
@@ -226,7 +226,6 @@ namespace basegfx
ImplPolygon() :
mpLeadingRightEdge(nullptr),
mnIdx(-1),
- maPoints(),
mbIsFinished(false)
{
// completely ad-hoc. but what the hell.