Fixed duplicate lines in echoing output at end of file

Streamify checks for OPTION_KEYWORD; check_line is 
KEYWORD.

basic_test.out, ppdump.out has warning for REACTION and KINETICS.

ppdump.dmp has USE mix, reaction, reaction_temperature none

now ppdump.dmp dumps reaction_raw, mix, react_temperature_raw

cell_operations is now linux.



git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@4828 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2010-09-20 17:09:14 +00:00
parent aa5cafeadd
commit 8e65d00c75

View File

@ -225,7 +225,7 @@ bool StorageBinList::Read(CParser & parser)
}
// Read dump entity list of numbers or number ranges for line, store in item
if (opt >= 0 && opt <= 12 || opt >= 14 && opt <= 15)
if ((opt >= 0 && opt <= 12) || (opt >= 14 && opt <= 15))
{
for (;;)
{
@ -310,4 +310,4 @@ void StorageBinList::TransferAll(StorageBinListItem &source)
this->reaction.Augment(*it);
this->temperature.Augment(*it);
}
}
}