Mercurial > hg > orthanc-stone
changeset 160:e9dae7e7bffc wasm
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 14 Feb 2018 09:18:06 +0100 |
parents | 0a73d76333db |
children | 197a5ddaf68c |
files | Framework/Toolbox/LinearAlgebra.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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<double>(3); - typename type_traits<double>::real_type norm = norm_inf(check); + type_traits<double>::real_type norm = norm_inf(check); return (norm <= threshold); }