Skip to content

Commit 73f9490

Browse files
committed
[ci] fix msvc type error
1 parent 2dce33d commit 73f9490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/unit-bjdata.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6533,7 +6533,7 @@ TEST_CASE("SOA Coverage Tests")
65336533
json j = json::array();
65346534
for (int i = 0; i < 3; ++i)
65356535
{
6536-
j.push_back({{"s", std::string(100, 'a' + i)}});
6536+
j.push_back({{"s", std::string(100, static_cast<char>('a' + i))}});
65376537
}
65386538
auto v = json::to_bjdata(j, true, true,
65396539
json::bjdata_version_t::draft4,

0 commit comments

Comments
 (0)