Skip to content

Commit 94ac6d8

Browse files
committed
lint
1 parent 7402c2e commit 94ac6d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/BoundDatumSet.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ namespace mssql
1717
{
1818
for (uint32_t i = 0; i < set->get_column_count(); ++i) {
1919
const auto binding = make_shared<BoundDatum>();
20-
const auto& [name, columnSize, dataType, dataTypeName, decimalDigits, nullable, udtTypeName] = set->get_meta_data(i);
21-
binding->reserve_column_type(dataType, columnSize, row_count);
20+
const auto& def = set->get_meta_data(i);
21+
binding->reserve_column_type(def.dataType, def.columnSize, row_count);
2222
_bindings->push_back(binding);
2323
}
2424
return true;
@@ -124,4 +124,4 @@ namespace mssql
124124
});
125125
return arr;
126126
}
127-
}
127+
}

0 commit comments

Comments
 (0)