Mentions légales du service

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

Minor fix in fft_factors (missing std namespace).

parent e23510d2
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ namespace Faust {
* Ref.: http://www.cs.cornell.edu/~bindel/class/cs5220-s10/slides/FFT.pdf
*/
template<typename FPP>
void fft_factors(unsigned int n, vector<MatGeneric<FPP,Cpu>*>& v);
void fft_factors(unsigned int n, std::vector<MatGeneric<FPP,Cpu>*>& v);
}
#include "faust_FFT.hpp"
......
......@@ -4,7 +4,7 @@
namespace Faust {
template<typename FPP>
void fft_factors(unsigned int n, vector<MatGeneric<complex<FPP>,Cpu>*>& v)
void fft_factors(unsigned int n, std::vector<MatGeneric<complex<FPP>,Cpu>*>& v)
{
//TODO: clean this code
//Cooley-Tukey
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment