Browse Source

Fixed compiling under Linux

tempestpy_adaptions
TimQu 8 years ago
parent
commit
433c05cc3e
  1. 2
      src/storm/storage/BitVector.cpp

2
src/storm/storage/BitVector.cpp

@ -255,7 +255,7 @@ namespace storm {
void BitVector::grow(uint_fast64_t minimumLength, bool init) {
if (minimumLength > bitCount) {
// We double the bitcount as long as it is less then the minimum length.
uint_fast64_t newLength = std::max(64ull, bitCount);
uint_fast64_t newLength = std::max(static_cast<uint_fast64_t>(64), bitCount);
// Note that newLength has to be initialized with a non-zero number.
while (newLength < minimumLength) {
newLength = newLength << 1;

Loading…
Cancel
Save