mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 13:35:03 +00:00
Fixed build
This commit is contained in:
parent
01ac9e9b33
commit
6335627796
1 changed files with 1 additions and 1 deletions
|
@ -398,7 +398,7 @@ namespace detail
|
|||
{
|
||||
GLM_FUNC_QUALIFIER static detail::tmat2x2<T, P> call(detail::tmat2x2<T, P> const & m)
|
||||
{
|
||||
T OneOverDeterminant = static_cast<>(1) / (
|
||||
T OneOverDeterminant = static_cast<T>(1) / (
|
||||
+ m[0][0] * m[1][1]
|
||||
- m[1][0] * m[0][1]);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue