From 372d75dbe809684cba9a6a0dd424d08b0813c2a4 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 15 Nov 2014 19:16:58 +0100 Subject: [PATCH] Clean up --- glm/detail/type_vec4.inl | 26 -------------------------- 1 file changed, 26 deletions(-) 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)