Skip to content

Commit

Permalink
refs #4328. Standard compliant ifstream usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Dec 15, 2011
1 parent d78451e commit f0797f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace MantidQt
bool WorkspaceOnDisk::checkStillThere() const
{
std::ifstream ifile;
ifile.open(m_fileName, std::ifstream::in);
ifile.open(m_fileName.c_str(), std::ifstream::in);
return !ifile.fail();
}

Expand Down

0 comments on commit f0797f1

Please sign in to comment.