From fbeae9619ab9603410a11a11af92a7dfeea0af81 Mon Sep 17 00:00:00 2001
From: Houtan Bastani <houtan@dynare.org>
Date: Tue, 25 Sep 2018 15:48:05 +0200
Subject: [PATCH] aesthetic fix

---
 src/SubModel.cc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/SubModel.cc b/src/SubModel.cc
index 20829a61..f4f89d2a 100644
--- a/src/SubModel.cc
+++ b/src/SubModel.cc
@@ -504,8 +504,7 @@ VarModelTable::writeOutput(const string &basename, ostream &output) const
           int eqn, lag, lhs_symb_id;
           tie (eqn, lag, lhs_symb_id) = it.first;
           int colidx = (int) distance(lhs.begin(), find(lhs.begin(), lhs.end(), lhs_symb_id));
-          ar_output << "    ar(" << eqn + 1 << ", " << colidx + 1 << ", " << lag
-                    << ") = ";
+          ar_output << "    ar(" << eqn + 1 << ", " << colidx + 1 << ", " << lag << ") = ";
           it.second->writeOutput(ar_output, ExprNodeOutputType::matlabDynamicModel);
           ar_output << ";" << endl;
         }
-- 
GitLab