Disabled warnings

This commit is contained in:
Christophe Riccio
2017-08-10 02:43:41 +02:00
parent 36c196b195
commit ec79dbdbef
2 changed files with 2 additions and 2 deletions

View File

@@ -478,7 +478,7 @@ namespace glm
GLM_FUNC_QUALIFIER vec<1, T, P> operator<<(vec<1, T, P> const & v, T scalar)
{
return vec<1, T, P>(
v.x << scalar);
static_cast<T>(v.x << scalar));
}
template<typename T, precision P>