bug fix: remove a redundantly generated double quote when verbose is on

release/4.3a0
Duy-Nguyen Ta 2013-03-15 23:24:30 +00:00
parent cbf0225c3e
commit 3a62daf985
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ string Constructor::wrapper_fragment(FileWriter& file,
file.oss << " collector_" << matlabUniqueName << ".insert(self);\n";
if(verbose_)
file.oss << " std::cout << \"constructed \" << self << \" << std::endl;" << endl;
file.oss << " std::cout << \"constructed \" << self << std::endl;" << endl;
file.oss << " out[0] = mxCreateNumericMatrix(1, 1, mxUINT32OR64_CLASS, mxREAL);" << endl;
file.oss << " *reinterpret_cast<Shared**> (mxGetData(out[0])) = self;" << endl;