preprocessor: fix typo in julia temporary terms output

time-shift
Houtan Bastani 2015-09-01 14:34:40 +02:00
parent 311e6bf26a
commit d4630ac877
1 changed files with 3 additions and 5 deletions

View File

@ -1134,14 +1134,12 @@ ModelTree::writeTemporaryTerms(const temporary_terms_t &tt, ostream &output,
output << " = ";
(*it)->writeOutput(output, output_type, tt2, tef_terms);
if (IS_C(output_type))
output << ";" << endl;
if (IS_C(output_type) || IS_MATLAB(output_type))
output << ";";
output << endl;
// Insert current node into tt2
tt2.insert(*it);
if (IS_MATLAB(output_type))
output << ";" << endl;
}
}