Browse Source

fixed operator<< of function call expr

tempestpy_adaptions
TimQu 6 years ago
parent
commit
a95331948c
  1. 2
      src/storm/storage/jani/expressions/FunctionCallExpression.cpp

2
src/storm/storage/jani/expressions/FunctionCallExpression.cpp

@ -49,11 +49,11 @@ namespace storm {
stream << "(";
bool first = true;
for (auto const& a : arguments) {
stream << *a;
if (!first) {
stream << ", ";
}
first = false;
stream << *a;
}
stream << ")";
}

Loading…
Cancel
Save