From 9585f66637638c6205d30d7c35644fab1c9d0bb2 Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Mon, 21 Jul 2025 16:35:28 -0500 Subject: [PATCH] mat3x3: undelete operator= --- math/mat3x3.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/mat3x3.hpp b/math/mat3x3.hpp index 6856043..1117179 100644 --- a/math/mat3x3.hpp +++ b/math/mat3x3.hpp @@ -37,7 +37,7 @@ public: inline constexpr typename mat<3, 3, T>::row_type const & operator[](int i) const; - void operator=(const mat<3, 3, T>&) = delete; + //void operator=(const mat<3, 3, T>&) = delete; };