use token::END_STATEMENT instead of ;

This commit is contained in:
andy
2009-08-26 10:21:51 +01:00
parent 0ce3449681
commit 45ca783a4f

View File

@ -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;