Browse Source

Fixed compiler error under new Xcode 10.2

tempestpy_adaptions
Matthias Volk 6 years ago
parent
commit
c0c242a191
  1. 2
      src/storm/builder/DdJaniModelBuilder.cpp

2
src/storm/builder/DdJaniModelBuilder.cpp

@ -1452,7 +1452,7 @@ namespace storm {
STORM_LOG_THROW(false, storm::exceptions::WrongFormatException, "Cannot translate model of type " << modelType << ".");
}
} else {
return ActionDd(this->variables.manager->template getBddZero(), this->variables.manager->template getAddZero<ValueType>(), {}, std::make_pair<uint64_t, uint64_t>(0, 0), {}, this->variables.manager->getBddZero());
return ActionDd(this->variables.manager->getBddZero(), this->variables.manager->template getAddZero<ValueType>(), {}, std::make_pair<uint64_t, uint64_t>(0, 0), {}, this->variables.manager->getBddZero());
}
}

Loading…
Cancel
Save