diff --git a/glm/detail/type_vec4.inl b/glm/detail/type_vec4.inl index 79bbb422..e5f1c2ba 100644 --- a/glm/detail/type_vec4.inl +++ b/glm/detail/type_vec4.inl @@ -373,11 +373,7 @@ namespace detail template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator-=(tvec1 const & v) { -<<<<<<< HEAD - return (*this = detail::compute_vec4_sub::call(*this, tvec4(v))); -======= return (*this = detail::compute_vec4_sub::call(*this, tvec4(v.x))); ->>>>>>> simd } template @@ -398,11 +394,7 @@ namespace detail template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator*=(tvec1 const & v) { -<<<<<<< HEAD - return (*this = detail::compute_vec4_mul::call(*this, tvec4(v))); -======= return (*this = detail::compute_vec4_mul::call(*this, tvec4(v.x))); ->>>>>>> simd } template @@ -423,22 +415,14 @@ namespace detail template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator/=(tvec1 const & v) { -<<<<<<< HEAD - return (*this = (detail::compute_vec4_div::call(*this, tvec4(v)))); -======= return (*this = detail::compute_vec4_div::call(*this, tvec4(v.x))); ->>>>>>> simd } template template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator/=(tvec4 const & v) { -<<<<<<< HEAD - return (*this = (detail::compute_vec4_div::call(*this, tvec4(v)))); -======= return (*this = detail::compute_vec4_div::call(*this, tvec4(v))); ->>>>>>> simd } // -- Increment and decrement operators --