Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TimelordUK committed Dec 10, 2021
1 parent 7402c2e commit 94ac6d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/BoundDatumSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ namespace mssql
{
for (uint32_t i = 0; i < set->get_column_count(); ++i) {
const auto binding = make_shared<BoundDatum>();
const auto& [name, columnSize, dataType, dataTypeName, decimalDigits, nullable, udtTypeName] = set->get_meta_data(i);
binding->reserve_column_type(dataType, columnSize, row_count);
const auto& def = set->get_meta_data(i);
binding->reserve_column_type(def.dataType, def.columnSize, row_count);
_bindings->push_back(binding);
}
return true;
Expand Down Expand Up @@ -124,4 +124,4 @@ namespace mssql
});
return arr;
}
}
}

0 comments on commit 94ac6d8

Please sign in to comment.