diff --git a/matrices.h b/matrices.h index 2df6e37..ef42bbd 100644 --- a/matrices.h +++ b/matrices.h @@ -34,6 +34,7 @@ class Matrix{ inline Matrix Transpose(); // Operators + inline Matrix(); inline Matrix operator=(const Matrix*); inline Matrix operator+(const Matrix*); inline Matrix operator-(const Matrix*); @@ -48,6 +49,10 @@ class Matrix{ inline Matrix(const Matrix*); }; +Matrix::Matrix(){ + +} + Matrix Matrix::operator=(const Matrix* other){ return this->Swap(other); }