Mentions légales du service

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

Fix ambiguous conj call compilation error.

parent 9d556920
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ void test_mul_adjoint()
Vect<FPP, Cpu> ref_vec(10);
for(int i = 0; i < 10; i++)
ref_vec.getData()[i] = conj(v(i)) * v2(i);
ref_vec.getData()[i] = Faust::conj(v(i)) * v2(i);
test_vec -= ref_vec;
assert(test_vec.norm() < 1e-6);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment