Clean-up sign-conversion warnings (7 of n)

This commit is contained in:
Florin Iucha 2019-11-29 20:58:53 -05:00
parent 87433206b8
commit 241cf8b0b9

View File

@ -1851,7 +1851,7 @@ TEST(FormatTest, Dynamic) {
std::string result = fmt::vformat(
"{} and {} and {}", fmt::basic_format_args<ctx>(
args.data(), static_cast<unsigned>(args.size())));
args.data(), static_cast<int>(args.size())));
EXPECT_EQ("42 and abc1 and 1.5", result);
}