|
@@ -680,7 +680,7 @@ namespace detail
|
|
|
typename tmat3x3<T, P>::row_type const & v
|
|
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>
|
|
template <typename T, precision P>
|
|
@@ -690,7 +690,7 @@ namespace detail
|
|
|
tmat3x3<T, P> const & m
|
|
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>
|
|
template <typename T, precision P>
|