From a848fa69be8dc46a9516203de0c2f6c88700d5df Mon Sep 17 00:00:00 2001 From: Sami Kankaristo Date: Sat, 12 Mar 2016 18:30:07 +0200 Subject: [PATCH] Remove duplicate function declarations --- glm/detail/type_vec2.hpp | 3 --- glm/detail/type_vec4.hpp | 6 ------ 2 files changed, 9 deletions(-) diff --git a/glm/detail/type_vec2.hpp b/glm/detail/type_vec2.hpp index 76029f49..24e9a846 100644 --- a/glm/detail/type_vec2.hpp +++ b/glm/detail/type_vec2.hpp @@ -298,9 +298,6 @@ namespace glm template GLM_FUNC_DECL tvec2 operator/(tvec2 const & v1, tvec2 const & v2); - template - GLM_FUNC_DECL tvec2 operator-(tvec2 const & v); - template GLM_FUNC_DECL tvec2 operator%(tvec2 const & v, T const & scalar); diff --git a/glm/detail/type_vec4.hpp b/glm/detail/type_vec4.hpp index e941b766..84d4f0b6 100644 --- a/glm/detail/type_vec4.hpp +++ b/glm/detail/type_vec4.hpp @@ -419,12 +419,6 @@ namespace detail template GLM_FUNC_DECL tvec4 operator/(tvec4 const & v1, tvec4 const & v2); - template - GLM_FUNC_DECL bool operator==(tvec4 const & v1, tvec4 const & v2); - - template - GLM_FUNC_DECL bool operator!=(tvec4 const & v1, tvec4 const & v2); - template GLM_FUNC_DECL tvec4 operator%(tvec4 const & v, T scalar);