Browse Source

Fixed compile problem

Former-commit-id: 718456a293
main
Mavo 9 years ago
parent
commit
50e37217de
  1. 2
      src/parser/DFTGalileoParser.cpp

2
src/parser/DFTGalileoParser.cpp

@ -54,7 +54,7 @@ namespace storm {
STORM_LOG_THROW(false, storm::exceptions::FileIoException, "Exception during file opening on " << filename << "."); STORM_LOG_THROW(false, storm::exceptions::FileIoException, "Exception during file opening on " << filename << ".");
return false; return false;
} }
file.exceptions( 0 );
file.exceptions( std::ifstream::goodbit );
std::string line; std::string line;
bool generalSuccess = true; bool generalSuccess = true;

Loading…
Cancel
Save