Merge pull request #306 from joakim-hove/stream-open-c_str

The stream::open() functions require c_str()
This commit is contained in:
Atgeirr Flø Rasmussen 2015-02-12 17:31:44 +01:00
commit 15aa7ec2ab
2 changed files with 2 additions and 2 deletions

View File

@ -292,7 +292,7 @@ namespace Opm
const std::string& filename, const std::string& filename,
const int desiredResportStep ) const int desiredResportStep )
{ {
std::ifstream restorefile( filename ); std::ifstream restorefile( filename.c_str() );
if( restorefile ) if( restorefile )
{ {
std::cout << "============================================================================"<<std::endl; std::cout << "============================================================================"<<std::endl;

View File

@ -263,7 +263,7 @@ namespace Opm
std::string backupfilename = param.getDefault("backupfile", std::string("") ); std::string backupfilename = param.getDefault("backupfile", std::string("") );
if( ! backupfilename.empty() ) if( ! backupfilename.empty() )
{ {
backupfile_.open( backupfilename ); backupfile_.open( backupfilename.c_str() );
} }
} }
} }