diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-09-21 09:50:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-09-21 12:59:42 +0200 |
commit | 4a5ed266e64b892dde8a3e36be042e7e9d307eae (patch) | |
tree | b4dda703760578921ddaf3c9eeeb813d7dfc0a46 /sc | |
parent | 082b56282f60bca8f58e0c77161ea3afc2005f12 (diff) |
unused returns
Change-Id: Ic5828b37951ed649a3d9abc18e1d44b979208d9b
Reviewed-on: https://gerrit.libreoffice.org/60855
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/scmatrix.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx index d5d3940ce9c8..2ebf4ec3f7b7 100644 --- a/sc/source/core/tool/scmatrix.cxx +++ b/sc/source/core/tool/scmatrix.cxx @@ -2193,7 +2193,7 @@ void ScMatrixImpl::MergeDoubleArray( std::vector<double>& rArray, ScFullMatrix:: case ScFullMatrix::Mul: { MergeDoubleArrayFunc<ArrayMul> aFunc(rArray); - aFunc = maMat.walk(std::move(aFunc)); + maMat.walk(std::move(aFunc)); } break; default: @@ -2493,7 +2493,7 @@ template<typename T> void ScMatrixImpl::ApplyOperation(T aOp, ScMatrixImpl& rMat) { MatrixOpWrapper<T> aFunc(rMat.maMat, aOp); - aFunc = maMat.walk(aFunc); + maMat.walk(aFunc); } template<typename T> @@ -2640,7 +2640,7 @@ void ScMatrixImpl::ExecuteOperation(const std::pair<size_t, size_t>& rStartPos, { WalkElementBlockOperation aFunc(maMat.size().row, aDoubleFunc, aBoolFunc, aStringFunc, aEmptyFunc); - aFunc = maMat.walk( + maMat.walk( aFunc, MatrixImplType::size_pair_type(rStartPos.first, rStartPos.second), MatrixImplType::size_pair_type(rEndPos.first, rEndPos.second)); |