Browse Source

switch case: added default to suppress warning in gcc6

Former-commit-id: 0907c5b200 [formerly 8bca6a7a6e]
Former-commit-id: 273d6e3b06
tempestpy_adaptions
sjunges 8 years ago
parent
commit
7528e86d67
  1. 4
      src/storage/jani/JSONExporter.cpp

4
src/storage/jani/JSONExporter.cpp

@ -103,6 +103,8 @@ namespace storm {
return ">";
case storm::logic::ComparisonType::GreaterEqual:
return "";
default:
assert(false);
}
}
@ -724,6 +726,8 @@ namespace storm {
return "argmax";
case storm::modelchecker::FilterType::VALUES:
return "values";
default:
assert(false);
}
}

Loading…
Cancel
Save