1 --- a/glm/core/type_vec4.hpp
2 +++ b/glm/core/type_vec4.hpp
4 template <int E0, int E1>
5 GLM_FUNC_DECL tvec4(T const & x_, glm::detail::swizzle<2, T, tvec2<T>, E0, E1, -1, -2> const & v, T const & w_)
7 - *this = tvec4<T>(x_, v(), w);
8 + *this = tvec4<T>(x_, v(), w_);
11 template <int E0, int E1>