From 3b57cfa1d2167c8429fc4b0a9c2135b43610e0f9 Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 31 May 2025 12:59:43 +0200 Subject: [PATCH] idk --- lab10/jacobi/matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lab10/jacobi/matrix.h b/lab10/jacobi/matrix.h index f53032c..31bc018 100644 --- a/lab10/jacobi/matrix.h +++ b/lab10/jacobi/matrix.h @@ -116,8 +116,8 @@ public: std::vector &get_row(int i) { size_t start = i * this->numCols_; - return std::vector(this->data() + start, - this->data() + start + this->numCols_); + return std::vector(this->data_ + start, + this->data_ + start + this->numCols_); } private: