Mentions légales du service

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

Fix minor compiling error on macOS/clang 'faust_TransformHelper.hpp:582:14:...

Fix minor compiling error on macOS/clang 'faust_TransformHelper.hpp:582:14: error: invalid suffix 'd' on floating constant'.
parent c500b5e0
No related branches found
No related tags found
No related merge requests found
...@@ -579,7 +579,7 @@ namespace Faust { ...@@ -579,7 +579,7 @@ namespace Faust {
this->transform->get_nonortho_interior_prod_ids(start_id, end_id); this->transform->get_nonortho_interior_prod_ids(start_id, end_id);
// cout << "start_id=" << start_id << "end_id=" << end_id << endl; // cout << "start_id=" << start_id << "end_id=" << end_id << endl;
if(start_id < 0) if(start_id < 0)
return 1.d; return 1.0;
else if(start_id == 0 && end_id == this->size()-1) else if(start_id == 0 && end_id == this->size()-1)
return this->transform->spectralNorm(nbr_iter_max, threshold, flag); return this->transform->spectralNorm(nbr_iter_max, threshold, flag);
// cout << "optimized norm2" << endl; // cout << "optimized norm2" << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment