diff --git a/src/storm/storage/Scheduler.cpp b/src/storm/storage/Scheduler.cpp index b7e842951..a1dc1ecbd 100644 --- a/src/storm/storage/Scheduler.cpp +++ b/src/storm/storage/Scheduler.cpp @@ -96,7 +96,7 @@ namespace storm { if (stateValuationsGiven) { widthOfStates += model->getStateValuations().getStateInfo(schedulerChoices.front().size() - 1).length() + 5; } - widthOfStates = std::max(widthOfStates, 12ull); + widthOfStates = std::max(widthOfStates, (uint_fast64_t)12); uint_fast64_t numOfSkippedStatesWithUniqueChoice = 0; out << "___________________________________________________________________" << std::endl; @@ -184,4 +184,4 @@ namespace storm { template class Scheduler; } -} \ No newline at end of file +}