summaryrefslogtreecommitdiff
path: root/basegfx/source/matrix/b3dhommatrix.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/matrix/b3dhommatrix.cxx')
-rw-r--r--basegfx/source/matrix/b3dhommatrix.cxx31
1 files changed, 6 insertions, 25 deletions
diff --git a/basegfx/source/matrix/b3dhommatrix.cxx b/basegfx/source/matrix/b3dhommatrix.cxx
index b55dd079b514..2e5e798fb001 100644
--- a/basegfx/source/matrix/b3dhommatrix.cxx
+++ b/basegfx/source/matrix/b3dhommatrix.cxx
@@ -29,36 +29,17 @@ namespace basegfx
{
};
- B3DHomMatrix::B3DHomMatrix()
- : mpImpl() // identity
- {
- }
+ B3DHomMatrix::B3DHomMatrix() = default;
- B3DHomMatrix::B3DHomMatrix(const B3DHomMatrix& rMat) :
- mpImpl(rMat.mpImpl)
- {
- }
+ B3DHomMatrix::B3DHomMatrix(const B3DHomMatrix&) = default;
- B3DHomMatrix::B3DHomMatrix(B3DHomMatrix&& rMat) :
- mpImpl(std::move(rMat.mpImpl))
- {
- }
+ B3DHomMatrix::B3DHomMatrix(B3DHomMatrix&&) = default;
- B3DHomMatrix::~B3DHomMatrix()
- {
- }
+ B3DHomMatrix::~B3DHomMatrix() = default;
- B3DHomMatrix& B3DHomMatrix::operator=(const B3DHomMatrix& rMat)
- {
- mpImpl = rMat.mpImpl;
- return *this;
- }
+ B3DHomMatrix& B3DHomMatrix::operator=(const B3DHomMatrix&) = default;
- B3DHomMatrix& B3DHomMatrix::operator=(B3DHomMatrix&& rMat)
- {
- mpImpl = std::move(rMat.mpImpl);
- return *this;
- }
+ B3DHomMatrix& B3DHomMatrix::operator=(B3DHomMatrix&&) = default;
double B3DHomMatrix::get(sal_uInt16 nRow, sal_uInt16 nColumn) const
{