Fixed build errors #250

This commit is contained in:
Christophe Riccio 2014-10-11 21:53:53 +02:00
parent b3b3069491
commit 2df7addc05
3 changed files with 6 additions and 6 deletions

View file

@ -589,7 +589,7 @@ namespace detail
typename tmat2x2<T, P>::row_type & v
)
{
return detail::compute_inverse<tmat2x2, T, P>::call(m) * v;
return detail::compute_inverse<T, P>(m) * v;
}
template <typename T, precision P>
@ -599,7 +599,7 @@ namespace detail
tmat2x2<T, P> const & m
)
{
return v * detail::compute_inverse<tmat2x2, T, P>::call(m);
return v * detail::compute_inverse<T, P>(m);
}
template <typename T, precision P>

View file

@ -680,7 +680,7 @@ namespace detail
typename tmat3x3<T, P>::row_type const & v
)
{
return detail::compute_inverse<tmat3x3, T, P>::call(m) * v;
return detail::compute_inverse<T, P>(m) * v;
}
template <typename T, precision P>
@ -690,7 +690,7 @@ namespace detail
tmat3x3<T, P> const & m
)
{
return v * detail::compute_inverse<tmat3x3, T, P>::call(m);
return v * detail::compute_inverse<T, P>(m);
}
template <typename T, precision P>

View file

@ -815,7 +815,7 @@ namespace detail
typename tmat4x4<T, P>::row_type const & v
)
{
return detail::compute_inverse<tmat4x4, T, P>::call(m) * v;
return detail::compute_inverse<T, P>(m) * v;
}
template <typename T, precision P>
@ -825,7 +825,7 @@ namespace detail
tmat4x4<T, P> const & m
)
{
return v * detail::compute_inverse<tmat4x4, T, P>::call(m);
return v * detail::compute_inverse<T, P>(m);
}
template <typename T, precision P>