Mentions légales du service

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

Fix compiling issue #214 on Windows VS.

parent a6fb389b
No related branches found
No related tags found
No related merge requests found
......@@ -205,12 +205,19 @@ namespace Faust
return out;
}
// TODO: specializations should be in .cpp file
template<>
void bit_reversal_factor<double>(int nfactors, std::vector<Faust::MatSparse<double, Cpu>*> &out)
{
//nothing to do for double matrices
}
template<>
void bit_reversal_factor<float>(int nfactors, std::vector<Faust::MatSparse<float, Cpu>*> &out)
{
//nothing to do for float matrices
}
template<>
void bit_reversal_factor<std::complex<double>>(int nfactors, std::vector<Faust::MatSparse<std::complex<double>, Cpu>*>& out)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment