Browse Source

Fixed compile problem

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

4
src/parser/DFTGalileoParser.cpp

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