diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-25 13:01:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 13:01:25 +0200 |
commit | 781fdb676fc89789180181e1ff2800df82c4c851 (patch) | |
tree | f7ddd6d755103651e19f19c45a16140bc323d2a0 /include | |
parent | 877dfa3783316c4c2850b0e5bd3837765d7c12c2 (diff) |
cid#1371285 Missing move assignment operator
Change-Id: Ia822a01caec28f8137e30c05b6904c9fac367ce4
Diffstat (limited to 'include')
-rw-r--r-- | include/basegfx/matrix/b3dhommatrix.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/basegfx/matrix/b3dhommatrix.hxx b/include/basegfx/matrix/b3dhommatrix.hxx index ec8ee34f51d5..20f02f00c295 100644 --- a/include/basegfx/matrix/b3dhommatrix.hxx +++ b/include/basegfx/matrix/b3dhommatrix.hxx @@ -42,6 +42,7 @@ namespace basegfx public: B3DHomMatrix(); B3DHomMatrix(const B3DHomMatrix& rMat); + B3DHomMatrix(B3DHomMatrix&& rMat); ~B3DHomMatrix(); double get(sal_uInt16 nRow, sal_uInt16 nColumn) const; @@ -107,6 +108,7 @@ namespace basegfx // assignment operator B3DHomMatrix& operator=(const B3DHomMatrix& rMat); + B3DHomMatrix& operator=(B3DHomMatrix&& rMat); // decomposition bool decompose(B3DTuple& rScale, B3DTuple& rTranslate, B3DTuple& rRotate, B3DTuple& rShear) const; |