From 07091a6b633cae70a37f1477f6c998cfb50b42bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Thu, 18 Feb 2010 15:42:36 +0100 Subject: [PATCH] Estimation DLL, matrix library: removed useless end-of-lines --- mex/sources/estimation/DecisionRules.cc | 1 - mex/sources/estimation/libmat/GeneralizedSchurDecomposition.cc | 1 - 2 files changed, 2 deletions(-) diff --git a/mex/sources/estimation/DecisionRules.cc b/mex/sources/estimation/DecisionRules.cc index 09fc1e6e2..c40158bc9 100644 --- a/mex/sources/estimation/DecisionRules.cc +++ b/mex/sources/estimation/DecisionRules.cc @@ -189,7 +189,6 @@ operator<<(std::ostream &out, const DecisionRules::BlanchardKahnException &e) out << "The Blanchard-Kahn order condition is not satisfied: you have " << e.n_fwrd_vars << " forward variables for " << e.n_explosive_eigenvals << " explosive eigenvalues"; else out << "The Blanchard Kahn rank condition is not satisfied"; - out << std::endl; return out; } diff --git a/mex/sources/estimation/libmat/GeneralizedSchurDecomposition.cc b/mex/sources/estimation/libmat/GeneralizedSchurDecomposition.cc index cbd75c534..3d0d5d140 100644 --- a/mex/sources/estimation/libmat/GeneralizedSchurDecomposition.cc +++ b/mex/sources/estimation/libmat/GeneralizedSchurDecomposition.cc @@ -68,6 +68,5 @@ operator<<(std::ostream &out, const GeneralizedSchurDecomposition::GSDException out << "after reordering, roundoff changed values of some complex eigenvalues so that leading eigenvalues in the Generalized Schur form no longer satisfy SELCTG=TRUE. This could also be caused due to scaling"; else if (e.info == e.n + 3) out << "reordering failed in DTGSEN"; - out << std::endl; return out; }