Browse Source

removed superfluous return

tempestpy_adaptions
dehnert 7 years ago
parent
commit
0fed84c5a9
  1. 2
      src/storm/models/sparse/StateLabeling.cpp

2
src/storm/models/sparse/StateLabeling.cpp

@ -50,7 +50,7 @@ namespace storm {
}
void StateLabeling::addLabelToState(std::string const& label, storm::storage::sparse::state_type state) {
return ItemLabeling::addLabelToItem(label, state);
ItemLabeling::addLabelToItem(label, state);
}
bool StateLabeling::getStateHasLabel(std::string const& label, storm::storage::sparse::state_type state) const {

Loading…
Cancel
Save