Mentions légales du service

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

Fix issue #293 (win compilation error).

parent def96aec
No related branches found
No related tags found
No related merge requests found
Pipeline #834137 skipped
......@@ -85,4 +85,12 @@ namespace Faust
return out;
}
template<>
RefManager Transform<@FAUST_SCALAR_FOR_GM@,GPU2>::ref_man([](void *fact)
{
#ifdef DEBUG
std::cout << "Transform delete_fact" << std::endl;
#endif
delete static_cast<MatGeneric<@FAUST_SCALAR_FOR_GM@, GPU2>*>(fact);
});
}
......@@ -28,15 +28,6 @@ namespace Faust
return data.size();
}
template<typename FPP>
RefManager Transform<FPP,GPU2>::ref_man([](void *fact)
{
#ifdef DEBUG
std::cout << "Transform delete_fact" << std::endl;
#endif
delete static_cast<MatGeneric<FPP,GPU2>*>(fact);
});
template<typename FPP>
void Transform<FPP,GPU2>::push_back(const MatGeneric<FPP,GPU2>* M, bool copying/*=true*/, const bool transpose/*=false*/, const bool conjugate/*=false*/)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment