Skip to content

Commit

Permalink
[c++] Fix a compiler warning (#3310)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored Nov 7, 2024
1 parent 36bccc3 commit bdaef58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libtiledbsoma/test/common.cc
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ std::unique_ptr<ArrowSchema> create_index_cols_info_schema(

auto schema = ArrowAdapter::make_arrow_schema(names, tiledb_datatypes);

for (size_t i = 0; i < schema->n_children; ++i) {
for (size_t i = 0; i < (size_t)schema->n_children; ++i) {
if (strcmp(schema->children[i]->name, "soma_geometry")) {
nanoarrow::UniqueBuffer buffer;
ArrowMetadataBuilderInit(buffer.get(), nullptr);
Expand Down

0 comments on commit bdaef58

Please sign in to comment.