diff --git a/src/storage/dd/CuddDd.cpp b/src/storage/dd/CuddDd.cpp index d2c69c3c5..2560e1db0 100644 --- a/src/storage/dd/CuddDd.cpp +++ b/src/storage/dd/CuddDd.cpp @@ -358,7 +358,8 @@ namespace storm { this->getDdManager()->getCuddManager().DumpDot({this->cuddAdd}); } else { FILE* filePointer = fopen(filename.c_str() , "w"); - this->getDdManager()->getCuddManager().DumpDot({this->cuddAdd}, nullptr, nullptr, filePointer); + std::vector cuddAddVector = { this->cuddAdd }; + this->getDdManager()->getCuddManager().DumpDot(cuddAddVector, nullptr, nullptr, filePointer); fclose(filePointer); } }