diff --git a/task1/matrix.hpp b/task1/matrix.hpp index d314915..8f5754e 100644 --- a/task1/matrix.hpp +++ b/task1/matrix.hpp @@ -15,4 +15,6 @@ class Matrix bool operator==(const Matrix& m2); bool operator!=(const Matrix& m2); Matrix operator+(const Matrix& m2); +private: +std::vector> data; };