Missing break in kinetics_read_raw switch.

git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@2693 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2008-02-07 23:14:24 +00:00
parent 3f9693c68c
commit bfec3cc7c7

View File

@ -350,6 +350,7 @@ void cxxKinetics::read_raw(CParser& parser)
}
opt_save = 5;
useLastLine = false;
break;
case 6: // steps
while (parser.copy_token(token, next_char) == CParser::TT_DIGIT) {
@ -365,6 +366,7 @@ void cxxKinetics::read_raw(CParser& parser)
}
opt_save = 6;
useLastLine = false;
break;
case 7: // cvode_steps
if (!(parser.get_iss() >> this->cvode_steps))