Skip to content
Snippets Groups Projects
Commit f80ad954 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

bug_fix: missing exit statement

parent 13ce36eb
No related branches found
No related tags found
No related merge requests found
...@@ -1298,6 +1298,7 @@ SvarIdentificationStatement::writeOutput(ostream &output, const string &basename ...@@ -1298,6 +1298,7 @@ SvarIdentificationStatement::writeOutput(ostream &output, const string &basename
{ {
cerr << "ERROR: lag =" << it->lag << ", num endog vars = " << n << "current endog var index = " << it->variable << ". Index " cerr << "ERROR: lag =" << it->lag << ", num endog vars = " << n << "current endog var index = " << it->variable << ". Index "
<< "out of bounds. If the above does not represent a logical error, please report this to the Dyanre Team." << endl; << "out of bounds. If the above does not represent a logical error, please report this to the Dyanre Team." << endl;
exit(EXIT_FAILURE);
} }
output << "options_.ms.Ri{" << it->equation << "}(" << it->restriction_nbr << ", " << col << ") = "; output << "options_.ms.Ri{" << it->equation << "}(" << it->restriction_nbr << ", " << col << ") = ";
it->value->writeOutput(output); it->value->writeOutput(output);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment