From b0546cd939476c0267cba4d28ab998559c08b0e8 Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Tue, 25 Mar 2014 15:42:33 +0100 Subject: [PATCH] add missing semicolon --- preprocessor/ComputingTasks.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/preprocessor/ComputingTasks.cc b/preprocessor/ComputingTasks.cc index 74b541f552..afcab1a65d 100644 --- a/preprocessor/ComputingTasks.cc +++ b/preprocessor/ComputingTasks.cc @@ -1897,9 +1897,9 @@ SubsamplesStatement::writeOutput(ostream &output, const string &basename) const output << "estimation_info.subsamples(subsamples_indx).range_index(" << map_indx << ") = {'" << it->first << "'};" << endl << "estimation_info.subsamples(subsamples_indx).range(" << map_indx << ").date1 = " - << it->second.first << endl + << it->second.first << ";" << endl << "estimation_info.subsamples(subsamples_indx).range(" << map_indx << ").date2 = " - << it->second.second << endl; + << it->second.second << ";" << endl; // Initialize associated subsample substructures in estimation_info const SymbolType symb_type = symbol_table.getType(name1); -- GitLab