Fixed incorrect seek positions.

This commit is contained in:
2016-06-22 08:59:18 +01:00
parent 9ed7277ec9
commit 234938349c
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ void Parser::readFile(const boost::filesystem::path &path)
void Parser::reset()
{
m_stream.clear();
seek(std::ios::beg);
seek(0);
}
////////////////////////////////////////////////////////////////////////////////////////////////////