diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-23 14:00:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-24 04:59:44 +0000 |
commit | 5145f60cc9046369923fca9a336f2009c426e9eb (patch) | |
tree | 9fcbc883ea478adc61862698dd9c6cbd8e25d924 /basegfx/source | |
parent | 79497f458727a0dea983847fe9d3873bf9c2e972 (diff) |
loplugin: unnecessary destructor: basctl..codemaker
Change-Id: Iadcfa9bc4fe9efb8d24d6d6afaf2b9b3def0bc3c
Reviewed-on: https://gerrit.libreoffice.org/33452
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basegfx/source')
-rw-r--r-- | basegfx/source/polygon/b2dpolygontriangulator.cxx | 4 | ||||
-rw-r--r-- | basegfx/source/polygon/b3dpolygon.cxx | 16 |
2 files changed, 0 insertions, 20 deletions
diff --git a/basegfx/source/polygon/b2dpolygontriangulator.cxx b/basegfx/source/polygon/b2dpolygontriangulator.cxx index ccc0680134dc..c54a700aef6a 100644 --- a/basegfx/source/polygon/b2dpolygontriangulator.cxx +++ b/basegfx/source/polygon/b2dpolygontriangulator.cxx @@ -71,10 +71,6 @@ namespace basegfx mfAtan2 = atan2(maEnd.getY() - maStart.getY(), maEnd.getX() - maStart.getX()); } - ~EdgeEntry() - { - } - bool operator<(const EdgeEntry& rComp) const { if(::basegfx::fTools::equal(maStart.getY(), rComp.maStart.getY())) diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx index e7f088210bd0..69a375eed4c5 100644 --- a/basegfx/source/polygon/b3dpolygon.cxx +++ b/basegfx/source/polygon/b3dpolygon.cxx @@ -87,10 +87,6 @@ public: { } - ~CoordinateDataArray3D() - { - } - ::basegfx::B3DVector getNormal() const { ::basegfx::B3DVector aRetval; @@ -285,10 +281,6 @@ public: } } - ~BColorArray() - { - } - bool operator==(const BColorArray& rCandidate) const { return (maVector == rCandidate.maVector); @@ -442,10 +434,6 @@ public: } } - ~NormalsArray3D() - { - } - bool operator==(const NormalsArray3D& rCandidate) const { return (maVector == rCandidate.maVector); @@ -609,10 +597,6 @@ public: } } - ~TextureCoordinate2D() - { - } - bool operator==(const TextureCoordinate2D& rCandidate) const { return (maVector == rCandidate.maVector); |