diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-27 15:26:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-27 21:24:20 +0200 |
commit | 8024118d5c9ac964e35e8c4163ca14a5cd78cc3d (patch) | |
tree | 8dd3ef5a8f61723fc3bf3e1d8c5f37a0204bc825 /include/basegfx/point | |
parent | 707ac13a3f700c8e4a7f08bdcd5d5321d0a28bc5 (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 'include/basegfx/point')
-rw-r--r-- | include/basegfx/point/b2dpoint.hxx | 1 | ||||
-rw-r--r-- | include/basegfx/point/b2ipoint.hxx | 1 | ||||
-rw-r--r-- | include/basegfx/point/b3dpoint.hxx | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/include/basegfx/point/b2dpoint.hxx b/include/basegfx/point/b2dpoint.hxx index 413aa00e40b5..d2f77aa493a3 100644 --- a/include/basegfx/point/b2dpoint.hxx +++ b/include/basegfx/point/b2dpoint.hxx @@ -45,7 +45,6 @@ namespace basegfx The point is initialized to (0.0, 0.0) */ B2DPoint() - : B2DTuple() {} /** Create a 2D Point diff --git a/include/basegfx/point/b2ipoint.hxx b/include/basegfx/point/b2ipoint.hxx index 4c0802b572ae..9357e9f0fdfc 100644 --- a/include/basegfx/point/b2ipoint.hxx +++ b/include/basegfx/point/b2ipoint.hxx @@ -41,7 +41,6 @@ namespace basegfx The point is initialized to (0, 0) */ B2IPoint() - : B2ITuple() {} /** Create a 2D Point diff --git a/include/basegfx/point/b3dpoint.hxx b/include/basegfx/point/b3dpoint.hxx index 2cb8acf9be50..e424f0a4c1ea 100644 --- a/include/basegfx/point/b3dpoint.hxx +++ b/include/basegfx/point/b3dpoint.hxx @@ -42,7 +42,6 @@ namespace basegfx The point is initialized to (0.0, 0.0, 0.0) */ B3DPoint() - : B3DTuple() {} /** Create a 3D Point |