Skip to content

Commit

Permalink
remove ctors
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Apr 9, 2021
1 parent d5abf45 commit 6da64e9
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cpp/src/io/orc/orc.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@ struct Stream {
std::optional<uint32_t> column_id; // ORC column id (different from column index in the table!)
uint64_t length = 0; // the number of bytes in the file

Stream(StreamKind kind, uint32_t column_id, uint64_t length = 0)
: kind{kind}, column_id{column_id}, length{length}
{
}
Stream() = default;

// Returns index of the column in the table, if any
// Stream of the 'column 0' does not have a corresponding column in the table
thrust::optional<uint32_t> column_index() const noexcept
Expand Down

0 comments on commit 6da64e9

Please sign in to comment.