Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
s/uint16/uint32
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
  • Loading branch information
zhouyuan committed Jul 20, 2022
1 parent 6b5738a commit 35c0909
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ namespace codegen {
namespace arrowcompute {
namespace extra {
struct ArrayItemIndex {
uint16_t id = 0;
uint16_t array_id = 0;
uint32_t id = 0;
uint32_t array_id = 0;
ArrayItemIndex() : array_id(0), id(0) {}
ArrayItemIndex(uint16_t array_id, uint16_t id) : array_id(array_id), id(id) {}
ArrayItemIndex(uint32_t array_id, uint32_t id) : array_id(array_id), id(id) {}
};
} // namespace extra
} // namespace arrowcompute
Expand Down

0 comments on commit 35c0909

Please sign in to comment.