Skip to content
Snippets Groups Projects
Commit 45ca783a authored by Andrew Heather's avatar Andrew Heather
Browse files

use token::END_STATEMENT instead of ;

parent 0ce34496
Branches
Tags
No related merge requests found
......@@ -54,8 +54,8 @@ int main(int argc, char *argv[])
OFstream reactionsFile(FOAMChemistryFileName);
reactionsFile
<< "species" << cr.species() << ';' << endl << endl
<< "reactions" << cr.reactions() << ';' << endl;
<< "species" << cr.species() << token::END_STATEMENT << nl << nl
<< "reactions" << cr.reactions() << token::END_STATEMENT << endl;
OFstream thermoFile(FOAMThermodynamicsFileName);
thermoFile<< cr.speciesThermo() << endl;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment