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:
Iliya Katueshenock
2023-11-21 15:58:17 +01:00
committed by Clément Foucault
parent 9320742b45
commit fc30a4b6a5

View File

@@ -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;
}