From 6ef8cf3042ab3ad51dc923ffc353b1905efed58b Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Thu, 22 Jun 2017 12:52:29 +0200 Subject: [PATCH] Fixed compile problem with ull --- src/storm/storage/Scheduler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}