Mentions légales du service

Skip to content
Snippets Groups Projects
Commit dd6cb0b8 authored by hhakim's avatar hhakim
Browse files

Fix issue #204 (compiling with complex<float>).

parent 92d6bfe7
No related branches found
No related tags found
No related merge requests found
......@@ -1000,7 +1000,7 @@ template<typename FPP>
handleError("Faust::TransformHelper::normalize()", "order for the norm to use is not valid");
}
if(norm != FPP(0))
norm_invs[i] = 1./norm;
norm_invs[i] = (FPP)1./norm;
else
norm_invs[i] = 1;
coords[i] = i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment