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 << "("; stream << "(";
bool first = true; bool first = true;
for (auto const& a : arguments) { for (auto const& a : arguments) {
stream << *a;
if (!first) { if (!first) {
stream << ", "; stream << ", ";
} }
first = false; first = false;
stream << *a;
} }
stream << ")"; stream << ")";
} }

Loading…
Cancel
Save