Skip to content

Commit

Permalink
fix uninitialized member
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule authored Mar 17, 2021
1 parent f79d0b1 commit 63228f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/io/orc/timezone.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ inline __device__ int32_t get_gmt_offset(cudf::device_span<int64_t const> ttimes
}

struct timezone_table {
int32_t gmt_offset;
int32_t gmt_offset = 0;
rmm::device_uvector<int64_t> ttimes;
rmm::device_uvector<int32_t> offsets;
timezone_table() : ttimes{0, rmm::cuda_stream_default}, offsets{0, rmm::cuda_stream_default} {}
Expand Down

0 comments on commit 63228f6

Please sign in to comment.