This commit is contained in:
Wei Dai 2021-02-11 22:02:52 -08:00
Родитель 5620edbfe6
Коммит 446d4dac5d
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -283,7 +283,8 @@ namespace seal
// Still need to consider integer-float conversions and all
// unsigned to signed conversions
}
else SEAL_IF_CONSTEXPR(std::is_integral<T>::value && std::is_integral<S>::value)
SEAL_IF_CONSTEXPR(std::is_integral<T>::value && std::is_integral<S>::value)
{
// Both integer types
if (value >= 0)