From 62d5e0ce45ef249a3df74ddca4e31b9fd367781d Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Mon, 23 May 2016 21:59:25 +0200 Subject: [PATCH] Fixed build --- glm/detail/type_vec4.inl | 16 ---------------- 1 file changed, 16 deletions(-) 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 --