We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab9c06 commit df44d8cCopy full SHA for df44d8c
src/cpp/dynamic-types/DynamicDataHelper.cpp
@@ -255,7 +255,7 @@ void DynamicDataHelper::print_basic_collection(
255
{
256
auto count = data->get_item_count();
257
std::cout << "[";
258
- for (size_t i = 0; i < count; ++i)
+ for (uint32_t i = 0; i < count; ++i)
259
260
print_basic_element(data, i, data->type_->get_element_type()->get_kind());
261
std::cout << (i == count - 1 ? "]" : ", ");
@@ -291,7 +291,7 @@ void DynamicDataHelper::print_complex_collection(
291
292
293
294
295
296
std::cout << tabs << "[" << i << "] = ";
297
print_complex_element(data, i, tabs);
0 commit comments