Added namespace qualifiers to the string type.

This commit is contained in:
Harry Moffat 2006-11-28 18:03:49 +00:00
parent ce73f8bacd
commit fef034f8a8
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ namespace Cantera {
*/
class CVodeErr : public CanteraError {
public:
CVodeErr(string msg) : CanteraError("CVodeInt", msg){}
CVodeErr(std::string msg) : CanteraError("CVodeInt", msg){}
};

View file

@ -9,7 +9,7 @@
namespace Cantera {
Integrator* newIntegrator(string itype) {
Integrator* newIntegrator(std::string itype) {
if (itype == "CVODE") {
#ifdef HAS_SUNDIALS
return new CVodesIntegrator();