Added namespace qualifiers to the string type.
This commit is contained in:
parent
ce73f8bacd
commit
fef034f8a8
2 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ namespace Cantera {
|
|||
*/
|
||||
class CVodeErr : public CanteraError {
|
||||
public:
|
||||
CVodeErr(string msg) : CanteraError("CVodeInt", msg){}
|
||||
CVodeErr(std::string msg) : CanteraError("CVodeInt", msg){}
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
namespace Cantera {
|
||||
|
||||
Integrator* newIntegrator(string itype) {
|
||||
Integrator* newIntegrator(std::string itype) {
|
||||
if (itype == "CVODE") {
|
||||
#ifdef HAS_SUNDIALS
|
||||
return new CVodesIntegrator();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue