Fix: BLI: Math: Build error for bad overload-lookup
Fix for unreported build error. Pull Request: https://projects.blender.org/blender/blender/pulls/115095
This commit is contained in:
committed by
Clément Foucault
parent
9320742b45
commit
fc30a4b6a5
@@ -218,7 +218,7 @@ MatBase<T, Size, Size> pseudo_invert(const MatBase<T, Size, Size> &mat, T epsilo
|
||||
{
|
||||
/* Start by trying normal inversion first. */
|
||||
bool success;
|
||||
MatBase<T, Size, Size> inv = invert(mat, success);
|
||||
MatBase<T, Size, Size> inv = invert<T, Size>(mat, success);
|
||||
if (success) {
|
||||
return inv;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user