From 4dc640c635d75491e6c541d98848184a6f0d6632 Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Thu, 9 Feb 2017 16:22:00 +0100 Subject: [PATCH] preprocessor: aesthetic fix --- ComputingTasks.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index 9843ba7d..ae580372 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -1044,10 +1044,7 @@ void ObservationTrendsStatement::writeOutput(ostream &output, const string &basename, bool minimal_workspace) const { output << "options_.trend_coeff = {};" << endl; - - trend_elements_t::const_iterator it; - - for (it = trend_elements.begin(); it != trend_elements.end(); it++) + for (trend_elements_t::const_iterator it = trend_elements.begin(); it != trend_elements.end(); it++) { SymbolType type = symbol_table.getType(it->first); if (type == eEndogenous) -- GitLab