From fabca90345709e0e92deb96efb96a88891fc4398 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Thu, 9 Feb 2017 16:22:00 +0100 Subject: [PATCH] preprocessor: aesthetic fix --- preprocessor/ComputingTasks.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/preprocessor/ComputingTasks.cc b/preprocessor/ComputingTasks.cc index 9843ba7d5..ae580372d 100644 --- a/preprocessor/ComputingTasks.cc +++ b/preprocessor/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)