Skip to content
Snippets Groups Projects
Commit 92eb8995 authored by Oliver Sander's avatar Oliver Sander
Browse files

bugfix in error message

[[Imported from SVN: r4728]]
parent f0a43735
No related branches found
No related tags found
No related merge requests found
......@@ -15,12 +15,12 @@ using namespace std;
ConfigParser::ConfigParser()
{}
void ConfigParser::parseFile(string file)
void ConfigParser::parseFile(std::string file)
{
ifstream in(file.c_str());
if (!in)
DUNE_THROW(IOError, "Could open configuration file " << file);
DUNE_THROW(IOError, "Could not open configuration file " << file);
string prefix;
set<string> keysInFile;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment