summaryrefslogtreecommitdiff
path: root/include/basegfx/tuple/b3dtuple.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-02 21:32:35 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-03 09:58:27 +0000
commite4a84c625f28b947816b07654fbe912a466b824a (patch)
treea1c907eda27fa5c44e129edb6bf1d353f7120ffc /include/basegfx/tuple/b3dtuple.hxx
parent0621795c54956c89dbb2df585df8336b1f86f7ef (diff)
default copy ctor and assignment operator are good enough
and block default move equivalents Change-Id: I360860512d2c88f8688685f4e751ded6335549da Reviewed-on: https://gerrit.libreoffice.org/32656 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/basegfx/tuple/b3dtuple.hxx')
-rw-r--r--include/basegfx/tuple/b3dtuple.hxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/basegfx/tuple/b3dtuple.hxx b/include/basegfx/tuple/b3dtuple.hxx
index 30b95beffc94..643663bf8a05 100644
--- a/include/basegfx/tuple/b3dtuple.hxx
+++ b/include/basegfx/tuple/b3dtuple.hxx
@@ -75,20 +75,6 @@ namespace basegfx
mfZ(fZ)
{}
- /** Create a copy of a 3D Tuple
-
- @param rTup
- The 3D Tuple which will be copied.
- */
- B3DTuple(const B3DTuple& rTup)
- : mfX( rTup.mfX ),
- mfY( rTup.mfY ),
- mfZ( rTup.mfZ )
- {}
-
- ~B3DTuple()
- {}
-
/// get X-Coordinate of 3D Tuple
double getX() const
{
@@ -230,14 +216,6 @@ namespace basegfx
return mfX != rTup.mfX || mfY != rTup.mfY || mfZ != rTup.mfZ;
}
- B3DTuple& operator=( const B3DTuple& rTup )
- {
- mfX = rTup.mfX;
- mfY = rTup.mfY;
- mfZ = rTup.mfZ;
- return *this;
- }
-
void correctValues(const double fCompareValue = 0.0)
{
if(0.0 == fCompareValue)