Browse Source

Added a constructor for GlobalProgramInformation as MSVC fails to default bool to false.

Former-commit-id: bd50a770c8
tempestpy_adaptions
PBerger 11 years ago
parent
commit
0a501b6e76
  1. 2
      src/parser/PrismParser.h

2
src/parser/PrismParser.h

@ -33,7 +33,7 @@ namespace storm {
class GlobalProgramInformation {
public:
// Default construct the header information.
GlobalProgramInformation() = default;
GlobalProgramInformation() : hasInitialStatesExpression(false), currentCommandIndex(0), currentUpdateIndex(0) {}
// Members for all essential information that needs to be collected.
storm::prism::Program::ModelType modelType;

Loading…
Cancel
Save