diff --git a/src/storm/utility/constants.cpp b/src/storm/utility/constants.cpp index a6326d5e8..34a34ab04 100644 --- a/src/storm/utility/constants.cpp +++ b/src/storm/utility/constants.cpp @@ -397,7 +397,7 @@ namespace storm { template<> RationalFunction convertNumber(int_fast64_t const& number){ STORM_LOG_ASSERT(static_cast(number) == number, "Rationalizing failed, because the number is too large."); - return RationalFunction(carl::rationalize(static_cast(number))); + return RationalFunction(carl::rationalize(static_cast(number))); } template<>