final tab correction

This commit is contained in:
Шишов Максим Денисович
2020-09-08 16:47:44 +03:00
committed by Gama
parent 2471231943
commit d003a2e7d8

View File

@@ -120,7 +120,7 @@ public:
* *
* @param v is a parameter the type and value of which is selected and later filled into the matrix * @param v is a parameter the type and value of which is selected and later filled into the matrix
* @return filled matrix of type PIMathMatrixT * @return filled matrix of type PIMathMatrixT
*/ */
static _CMatrix filled(const Type &v) { static _CMatrix filled(const Type &v) {
_CMatrix tm; _CMatrix tm;
PIMM_FOR_WB(r, c) tm.m[r][c] = v; PIMM_FOR_WB(r, c) tm.m[r][c] = v;
@@ -965,7 +965,7 @@ public:
* @param r0 is the number of the first selected row * @param r0 is the number of the first selected row
* @param r1 is the number of the second selected row * @param r1 is the number of the second selected row
* @return matrix type _CMatrix * @return matrix type _CMatrix
*/ */
_CMatrix &swapCols(uint r0, uint r1) { _CMatrix &swapCols(uint r0, uint r1) {
PIMM_FOR_C(i) { piSwap(_V2D::element(i, r0), _V2D::element(i, r1)); } PIMM_FOR_C(i) { piSwap(_V2D::element(i, r0), _V2D::element(i, r1)); }
return *this; return *this;