Mentions légales du service

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

Fix missing return in Faust::Vect<FPP,Cpu>::min().

parent d0396b89
Branches
Tags
No related merge requests found
......@@ -139,7 +139,7 @@ namespace Faust
FPP mean()const{return vec.mean();}
FPP dot(const Vect<FPP,Cpu> & v)const;
FPP min() const {return vec.minCoeff();};
FPP min(int *index) const { int col_index; vec.minCoeff(index, &col_index); }
FPP min(int *index) const { int col_index; return vec.minCoeff(index, &col_index); }
template<typename FPP1>
void operator=(Vect<FPP1,Cpu> const& y);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment