Mentions légales du service

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

Fix missing attributes in copy/assignment operator overload of StoppingCriterion.

parent 1c18e7c6
Branches
Tags
No related merge requests found
...@@ -64,6 +64,8 @@ Faust::StoppingCriterion<T>& Faust::StoppingCriterion<T>::operator=(const Stoppi ...@@ -64,6 +64,8 @@ Faust::StoppingCriterion<T>& Faust::StoppingCriterion<T>::operator=(const Stoppi
nb_it = s.nb_it; nb_it = s.nb_it;
epsErr = s.epsErr; epsErr = s.epsErr;
lastErr = s.lastErr; lastErr = s.lastErr;
maxIteration = s.maxIteration;
errorThreshold = s.errorThreshold;
return *this; return *this;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment