From bdb3d4b88c357e8e4c429b9413d778884d1d0fdc Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 31 May 2025 12:54:24 +0200 Subject: [PATCH] fix --- lab10/jacobi/matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab10/jacobi/matrix.h b/lab10/jacobi/matrix.h index 5cb1eb3..af83842 100644 --- a/lab10/jacobi/matrix.h +++ b/lab10/jacobi/matrix.h @@ -115,7 +115,7 @@ public: Matrix &operator/=(double x); std::vector &get_row(int i) { - return std::vector slice(i * this->cols(), this->cols()); + return slice(i * this->cols(), this->cols()); } private: