fixed bug in writeCCOutput

issue#70
Michel Juillard 2016-06-18 11:18:55 +02:00
parent 78a90b7c20
commit 5186de5dcb
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ SymbolTable::writeCCOutput(ostream &output) const throw (NotYetFrozenException)
output << "endo_names[\"" << getName(endo_ids[id]) << "\"] = " << id << ";" << endl;
output << endl
<< "int param_nbr = " << param_nbr() << ";" << endl;
<< "param_nbr = " << param_nbr() << ";" << endl;
for (int id = 0; id < param_nbr(); id++)
output << "param_names[\"" << getName(param_ids[id]) << "\"] = " << id << ";" << endl;