From d003a2e7d8891d0e86192fbd034f1e18424ff69f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A8=D0=B8=D1=88=D0=BE=D0=B2=20=D0=9C=D0=B0=D0=BA=D1=81?= =?UTF-8?q?=D0=B8=D0=BC=20=D0=94=D0=B5=D0=BD=D0=B8=D1=81=D0=BE=D0=B2=D0=B8?= =?UTF-8?q?=D1=87?= Date: Tue, 8 Sep 2020 16:47:44 +0300 Subject: [PATCH] final tab correction --- libs/main/math/pimathmatrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/main/math/pimathmatrix.h b/libs/main/math/pimathmatrix.h index fe1c6a66..8ab15e91 100644 --- a/libs/main/math/pimathmatrix.h +++ b/libs/main/math/pimathmatrix.h @@ -120,7 +120,7 @@ public: * * @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 - */ + */ static _CMatrix filled(const Type &v) { _CMatrix tm; 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 r1 is the number of the second selected row * @return matrix type _CMatrix - */ + */ _CMatrix &swapCols(uint r0, uint r1) { PIMM_FOR_C(i) { piSwap(_V2D::element(i, r0), _V2D::element(i, r1)); } return *this;