diff --git a/source/include/matrix.h b/source/include/matrix.h index be644f6..4a9806b 100644 --- a/source/include/matrix.h +++ b/source/include/matrix.h @@ -19,7 +19,7 @@ protected: int size; public: - Matrix(int size); + Matrix(int size = 4); Matrix(double values[], int size); double get(int x, int y) const { return this->data[this->size * x + y]; };