Fixed GCC build

This commit is contained in:
Christophe Riccio
2014-11-01 23:35:10 +01:00
parent 8a882ffdf1
commit 41c00872a1
11 changed files with 80 additions and 36 deletions

View File

@@ -313,7 +313,7 @@ namespace detail
template <typename T, precision P, template <typename, precision> class vecType>
GLM_FUNC_QUALIFIER vecType<T, P> gaussRand(vecType<T, P> const & Mean, vecType<T, P> const & Deviation)
{
return detail::functor2<T, T, P, vecType>::call(gaussRand, Mean, Deviation);
return detail::functor2<T, P, vecType>::call(gaussRand, Mean, Deviation);
}
template <typename T>