Use datatype of underlying data (#3647)

This commit is contained in:
Sascha Scandella 2023-09-19 16:31:36 +02:00 committed by GitHub
parent 492a99c964
commit 8ef4db4b96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3033,7 +3033,7 @@ class bigint {
bigits_.resize(to_unsigned(num_bigits + exp_difference));
for (int i = num_bigits - 1, j = i + exp_difference; i >= 0; --i, --j)
bigits_[j] = bigits_[i];
std::uninitialized_fill_n(bigits_.data(), exp_difference, 0);
std::uninitialized_fill_n(bigits_.data(), exp_difference, 0u);
exp_ -= exp_difference;
}