From 89ee30f6b3998abce533d1f2f265545dd13ae5cb Mon Sep 17 00:00:00 2001 From: Sascha Scandella <84325903+saschasc@users.noreply.github.com> Date: Mon, 18 Sep 2023 22:18:58 +0200 Subject: [PATCH] Use datatype of underlying data --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 76dacc971d08..0ea7c8ccd003 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -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; }