Skip to content
Snippets Groups Projects
Commit 5d1162d2 authored by MichelJuillard's avatar MichelJuillard
Browse files

fixed bug in writeCCOutput

parent 25243712
Branches
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment