Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Jun 23, 2023
1 parent 4b0d1c5 commit 17d3416
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions c/validation/adbc_validation_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ struct StreamReader {

/// \brief Read an AdbcGetInfoData struct with RAII safety
struct GetObjectsReader {
explicit GetObjectsReader(struct ArrowArrayView* array_view) : array_view_(array_view) {
explicit GetObjectsReader(struct ArrowArrayView* array_view) {
// TODO: this swallows any construction errors
get_objects_data_ = AdbcGetObjectsDataInit(array_view);
}
Expand All @@ -214,7 +214,6 @@ struct GetObjectsReader {
}

private:
struct ArrowArrayView* array_view_;
struct AdbcGetObjectsData* get_objects_data_;
};

Expand Down

0 comments on commit 17d3416

Please sign in to comment.