raulcd commented on code in PR #45852:
URL: https://github.com/apache/arrow/pull/45852#discussion_r2001703342


##########
cpp/src/arrow/util/bitmap_ops.cc:
##########
@@ -248,13 +250,15 @@ void ReverseBitmap(const uint8_t* data, int64_t offset, 
int64_t length, uint8_t*
 }
 
 Result<std::shared_ptr<Buffer>> CopyBitmap(MemoryPool* pool, const uint8_t* 
data,
-                                           int64_t offset, int64_t length) {
-  return TransferBitmap<TransferMode::Copy>(pool, data, offset, length);
+                                           int64_t offset, int64_t length,
+                                           int64_t out_offset) {
+  return TransferBitmap<TransferMode::Copy>(pool, data, offset, length, 
out_offset);
 }
 
 Result<std::shared_ptr<Buffer>> InvertBitmap(MemoryPool* pool, const uint8_t* 
data,
                                              int64_t offset, int64_t length) {

Review Comment:
   I am not adding `out_offset` to `InvertBitmap` because I am unsure how 
useful that could really be.



-- 
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