Mentions légales du service

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

Fix missing new line in matfaust.Faust.disp output due to a recent change in...

Fix missing new line in matfaust.Faust.disp output due to a recent change in C++ to_string (c647a625).
parent 908bd6b9
No related branches found
No related tags found
No related merge requests found
Pipeline #834142 skipped
......@@ -10,6 +10,6 @@ void faust_disp(const mxArray **prhs, const int nrhs, mxArray **plhs, const int
//core_ptr->display(); // doesn't work on windows,
// matlab terminal doesn't receive the mex lib std output
// we must use mexPrintf() to display content
mexPrintf(core_ptr->to_string().c_str());
mexPrintf((core_ptr->to_string()+"\r\n").c_str());
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment