# HG changeset patch # User Sebastien Jodogne # Date 1518596286 -3600 # Node ID e9dae7e7bffcb15b1b5e5c695e142d9f4ee2cbbd # Parent 0a73d76333db889e8d923147a412db53ca2707c5 fix diff -r 0a73d76333db -r e9dae7e7bffc Framework/Toolbox/LinearAlgebra.cpp --- a/Framework/Toolbox/LinearAlgebra.cpp Wed Feb 14 09:15:08 2018 +0100 +++ b/Framework/Toolbox/LinearAlgebra.cpp Wed Feb 14 09:18:06 2018 +0100 @@ -240,7 +240,7 @@ const Matrix check = prod(trans(q), q) - identity_matrix(3); - typename type_traits::real_type norm = norm_inf(check); + type_traits::real_type norm = norm_inf(check); return (norm <= threshold); }