mirror of
https://github.com/g-truc/glm.git
synced 2024-11-26 18:24:35 +00:00
Merge branch '0.9.4' of https://github.com/g-truc/glm into 0.9.4
This commit is contained in:
commit
b033f9b4e8
@ -707,6 +707,10 @@ namespace detail
|
|||||||
Result.y = (m[1][2] + m[2][1]) * mult;
|
Result.y = (m[1][2] + m[2][1]) * mult;
|
||||||
Result.z = biggestVal;
|
Result.z = biggestVal;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
default: // Silence a -Wswitch-default warning in GCC. Should never actually get here. Assert is just for sanity.
|
||||||
|
assert(false);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return Result;
|
return Result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user