From b766080e44f274e5158221fcf4e8bd3105f4e200 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Sat, 11 May 2024 17:29:55 -0400 Subject: [PATCH] Remove user-provided assignment --- include/Matrix.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/Matrix.hpp b/include/Matrix.hpp index ff8ad7c8..417e2cc9 100644 --- a/include/Matrix.hpp +++ b/include/Matrix.hpp @@ -58,11 +58,6 @@ class Matrix : public ::Matrix { return *this; } - Matrix& operator=(const Matrix& matrix) { - set(matrix); - return *this; - } - bool operator==(const ::Matrix& other) { return m0 == other.m0 && m1 == other.m1