diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-07 20:58:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-07 21:57:03 +0000 |
commit | 87f9e8945fde37182bec1e674dd6ccee4133209c (patch) | |
tree | fd14dc45a1f5e49bf864574a593dbe9fe4c82d6b /include/basegfx/point | |
parent | 8b6e914305d978892e106a575662a2a5217242dc (diff) |
default copy ctor and assignment operator are good enough
and block default move equivalents
Change-Id: Ib8a1050803446c2e099f66602fae0465bd8165cf
Diffstat (limited to 'include/basegfx/point')
-rw-r--r-- | include/basegfx/point/b2ipoint.hxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/basegfx/point/b2ipoint.hxx b/include/basegfx/point/b2ipoint.hxx index e092e35a6b1f..7a930d69eb5e 100644 --- a/include/basegfx/point/b2ipoint.hxx +++ b/include/basegfx/point/b2ipoint.hxx @@ -60,15 +60,6 @@ namespace basegfx : B2ITuple(nX, nY) {} - /** Create a copy of a 2D Point - - @param rPoint - The 2D Point which will be copied. - */ - B2IPoint(const B2IPoint& rPoint) - : B2ITuple(rPoint) - {} - /** constructor with tuple to allow copy-constructing from B2ITuple-based classes */ @@ -76,9 +67,6 @@ namespace basegfx : B2ITuple(rTuple) {} - ~B2IPoint() - {} - /** *=operator to allow usage from B2IPoint, too */ B2IPoint& operator*=( const B2IPoint& rPnt ) |