From 12ddf85690584a63ed5f5726263d69e9ee464e52 Mon Sep 17 00:00:00 2001
From: Houtan Bastani <houtan@dynare.org>
Date: Mon, 28 Aug 2017 17:46:50 +0200
Subject: [PATCH] preprocessor: aesthetic fix

---
 ComputingTasks.cc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ComputingTasks.cc b/ComputingTasks.cc
index a9320ed1..51f48e2d 100644
--- a/ComputingTasks.cc
+++ b/ComputingTasks.cc
@@ -4346,9 +4346,9 @@ CalibSmootherStatement::writeOutput(ostream &output, const string &basename, boo
 {
   options_list.writeOutput(output);
   symbol_list.writeOutput("var_list_", output);
-  output << "options_.smoother = 1;" << endl;
-  output << "options_.order = 1;" << endl;
-  output << "[oo_,M_,options_,bayestopt_]=evaluate_smoother('calibration',var_list_,M_,oo_,options_,bayestopt_,estim_params_);" << endl;
+  output << "options_.smoother = 1;" << endl
+         << "options_.order = 1;" << endl
+         << "[oo_, M_, options_, bayestopt_] = evaluate_smoother('calibration', var_list_, M_, oo_, options_, bayestopt_, estim_params_);" << endl;
 }
 
 void
-- 
GitLab