Skip to content

Commit df44d8c

Browse files
committed
Fix FastDDS windows CI error
Signed-off-by: methylDragon <[email protected]>
1 parent dab9c06 commit df44d8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cpp/dynamic-types/DynamicDataHelper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ void DynamicDataHelper::print_basic_collection(
255255
{
256256
auto count = data->get_item_count();
257257
std::cout << "[";
258-
for (size_t i = 0; i < count; ++i)
258+
for (uint32_t i = 0; i < count; ++i)
259259
{
260260
print_basic_element(data, i, data->type_->get_element_type()->get_kind());
261261
std::cout << (i == count - 1 ? "]" : ", ");
@@ -291,7 +291,7 @@ void DynamicDataHelper::print_complex_collection(
291291
{
292292
auto count = data->get_item_count();
293293

294-
for (size_t i = 0; i < count; ++i)
294+
for (uint32_t i = 0; i < count; ++i)
295295
{
296296
std::cout << tabs << "[" << i << "] = ";
297297
print_complex_element(data, i, tabs);

0 commit comments

Comments
 (0)