Minor change for adding constexpr

This commit is contained in:
HarryLeeIBM 2023-02-22 12:50:46 -08:00
parent 18b93fc212
commit e979a86604

View File

@ -1042,7 +1042,7 @@ private:
}
else
{
if (std::is_same_v<Impl, JavaHashImpl>)
if constexpr (std::is_same_v<Impl, JavaHashImpl>)
h = JavaHashImpl::apply(vec_from[i]);
else
{