Mentions légales du service

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

Fix Faust::TransformHelper::optimize_multiply when in_place==true.

When in_place==true the function must still returns a TransformHelper object ptr, in that case: this
parent c02c0ffc
No related branches found
No related tags found
No related merge requests found
......@@ -472,7 +472,10 @@ namespace Faust {
opt_meth = times[opt_meth]<times[i+1]?opt_meth:i+1;
}
if(inplace)
{
this->set_mul_order_opt_mode(opt_meth);
t_opt = this;
}
else
{
t_opt = new TransformHelper<FPP,Cpu>(this->transform->data, 1.0, false, false, true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment