Alex-PLACET commented on code in PR #49679:
URL: https://github.com/apache/arrow/pull/49679#discussion_r3492385045


##########
cpp/src/arrow/chunked_array.h:
##########
@@ -112,7 +112,7 @@ class ARROW_EXPORT ChunkedArray {
   int num_chunks() const { return static_cast<int>(chunks_.size()); }
 
   /// \return chunk a particular chunk from the chunked array
-  const std::shared_ptr<Array>& chunk(int i) const { return chunks_[i]; }
+  const std::shared_ptr<Array>& chunk(size_t i) const { return chunks_[i]; }

Review Comment:
   fixed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to