From 66baffaee5a5b88418a7ab6598e7f187fdda68fb 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

---
 ComputingTasks.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ComputingTasks.cc b/ComputingTasks.cc
index 74b541f5..afcab1a6 100644
--- a/ComputingTasks.cc
+++ b/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