From 21dbf18064480cade972f50431a7fad6505d6d43 Mon Sep 17 00:00:00 2001 From: Noel Grandin <noel.grandin@collabora.co.uk> Date: Tue, 31 Aug 2021 11:29:47 +0200 Subject: clang-tidy:readability-redundant-member-init Change-Id: I95918275653714577e2d6728dd3947c7fbb66d8f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121360 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> --- include/drawinglayer/primitive2d/primitivetools2d.hxx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'include/drawinglayer/primitive2d') diff --git a/include/drawinglayer/primitive2d/primitivetools2d.hxx b/include/drawinglayer/primitive2d/primitivetools2d.hxx index ec578679adce..97e4f770e389 100644 --- a/include/drawinglayer/primitive2d/primitivetools2d.hxx +++ b/include/drawinglayer/primitive2d/primitivetools2d.hxx @@ -46,8 +46,7 @@ namespace drawinglayer::primitive2d public: /// constructor DiscreteMetricDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - mfDiscreteUnit(0.0) + : mfDiscreteUnit(0.0) { } @@ -77,8 +76,6 @@ namespace drawinglayer::primitive2d public: /// constructor ViewportDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - maViewport() { } @@ -108,8 +105,6 @@ namespace drawinglayer::primitive2d public: /// constructor ViewTransformationDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - maViewTransformation() { } @@ -141,9 +136,6 @@ namespace drawinglayer::primitive2d public: /// constructor ObjectAndViewTransformationDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - maViewTransformation(), - maObjectTransformation() { } -- cgit