diff --git a/glm/detail/type_vec4.inl b/glm/detail/type_vec4.inl index 90901bee..5c0630e8 100644 --- a/glm/detail/type_vec4.inl +++ b/glm/detail/type_vec4.inl @@ -266,33 +266,7 @@ namespace glm ////////////////////////////////////// // Unary arithmetic operators -/* - template - GLM_FUNC_QUALIFIER tvec4 & tvec4::operator=(tvec4 const & v) - { - this->x = v.x; - this->y = v.y; - this->z = v.z; - this->w = v.w; - return *this; - } -#if GLM_HAS_ANONYMOUS_UNION && (GLM_ARCH & GLM_ARCH_SSE2) - template <> - GLM_FUNC_QUALIFIER tvec4 & tvec4::operator= (tvec4 const & v) - { - this->data = v.data; - return *this; - } - - template <> - GLM_FUNC_QUALIFIER tvec4 & tvec4::operator= (tvec4 const & v) - { - this->data = v.data; - return *this; - } -#endif -*/ template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator=(tvec4 const & v)