From 3a62daf985471755a3a79ae5e1d0eb15a28a4306 Mon Sep 17 00:00:00 2001 From: Duy-Nguyen Ta Date: Fri, 15 Mar 2013 23:24:30 +0000 Subject: [PATCH] bug fix: remove a redundantly generated double quote when verbose is on --- wrap/Constructor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/Constructor.cpp b/wrap/Constructor.cpp index feae9a8fa..4529d45b3 100644 --- a/wrap/Constructor.cpp +++ b/wrap/Constructor.cpp @@ -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 (mxGetData(out[0])) = self;" << endl;