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
No related branches found
No related tags found
No related merge requests found
...@@ -54,8 +54,8 @@ int main(int argc, char *argv[]) ...@@ -54,8 +54,8 @@ int main(int argc, char *argv[])
OFstream reactionsFile(FOAMChemistryFileName); OFstream reactionsFile(FOAMChemistryFileName);
reactionsFile reactionsFile
<< "species" << cr.species() << ';' << endl << endl << "species" << cr.species() << token::END_STATEMENT << nl << nl
<< "reactions" << cr.reactions() << ';' << endl; << "reactions" << cr.reactions() << token::END_STATEMENT << endl;
OFstream thermoFile(FOAMThermodynamicsFileName); OFstream thermoFile(FOAMThermodynamicsFileName);
thermoFile<< cr.speciesThermo() << endl; thermoFile<< cr.speciesThermo() << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment