diff --git a/glm/detail/type_vec4.inl b/glm/detail/type_vec4.inl index 20f2b43c..a51369cc 100644 --- a/glm/detail/type_vec4.inl +++ b/glm/detail/type_vec4.inl @@ -722,7 +722,7 @@ namespace glm } template - GLM_FUNC_DECL tvec4 operator-(tvec1 const & v1, tvec4 const & v2) + GLM_FUNC_QUALIFIER tvec4 operator-(tvec1 const & v1, tvec4 const & v2) { return tvec4( v1.x - v2.x, @@ -772,7 +772,7 @@ namespace glm } template - GLM_FUNC_DECL tvec4 operator*(tvec1 const & v1, tvec4 const & v2) + GLM_FUNC_QUALIFIER tvec4 operator*(tvec1 const & v1, tvec4 const & v2) { return tvec4( v1.x * v2.x, @@ -822,7 +822,7 @@ namespace glm } template - GLM_FUNC_DECL tvec4 operator/(tvec1 const & v1, tvec4 const & v2) + GLM_FUNC_QUALIFIER tvec4 operator/(tvec1 const & v1, tvec4 const & v2) { return tvec4( v1.x / v2.x, diff --git a/glm/gtx/string_cast.inl b/glm/gtx/string_cast.inl index c21fa75f..2a0434d8 100644 --- a/glm/gtx/string_cast.inl +++ b/glm/gtx/string_cast.inl @@ -479,7 +479,7 @@ namespace detail }//namespace detail template