Browse Source

Fixed warning about superfluous semicolon after a method def.

Former-commit-id: 22fa68a405
tempestpy_adaptions
sjunges 9 years ago
parent
commit
4cc8442b77
  1. 2
      src/storage/prism/Program.cpp

2
src/storage/prism/Program.cpp

@ -1217,7 +1217,7 @@ namespace storm {
} }
return res; return res;
};
}
Command Program::synchronizeCommands(uint_fast64_t newCommandIndex, uint_fast64_t actionIndex, uint_fast64_t firstUpdateIndex, std::string const& actionName, std::vector<std::reference_wrapper<Command const>> const& commands) const { Command Program::synchronizeCommands(uint_fast64_t newCommandIndex, uint_fast64_t actionIndex, uint_fast64_t firstUpdateIndex, std::string const& actionName, std::vector<std::reference_wrapper<Command const>> const& commands) const {
// To construct the synchronous product of the commands, we need to store a list of its updates. // To construct the synchronous product of the commands, we need to store a list of its updates.

Loading…
Cancel
Save