Mentions légales du service

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

Fix call to real in faust_conj.cpp.

parent 89f7e1b0
Branches
Tags
No related merge requests found
......@@ -6,13 +6,13 @@ namespace Faust
template<>
double conj<double>(const double& e)
{
return std::conj(e).real();
return std::real(std::conj(e));
}
template<>
float conj<float>(const float& e)
{
return std::conj(e).real();
return std::real(std::conj(e));
}
template<>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment