From d81da8b0b61b9d91f751367ffb8298982bd6b332 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Thu, 19 Feb 2026 06:45:16 +0100 Subject: [PATCH] implict vector conversion fix --- interfaces/Crafter.Math-Vector.cppm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/interfaces/Crafter.Math-Vector.cppm b/interfaces/Crafter.Math-Vector.cppm index a137403..beec271 100755 --- a/interfaces/Crafter.Math-Vector.cppm +++ b/interfaces/Crafter.Math-Vector.cppm @@ -291,14 +291,6 @@ namespace Crafter { this->v[i] /= b; } } - template - operator Vector() const { - Vector returnVector; - for(std::uint32_t i = 0; i < Len; i++) { - returnVector.v[i] = this->v[i]; - } - return returnVector; - } template constexpr bool operator==(BT b) const {