waynexia commented on code in PR #1678:
URL: https://github.com/apache/incubator-fury/pull/1678#discussion_r1629699608


##########
rust/fury/src/row/bit_util.rs:
##########
@@ -18,5 +18,5 @@
 const WORD_SIZE: usize = 8;
 
 pub fn calculate_bitmap_width_in_bytes(num_fields: usize) -> usize {
-    return ((num_fields + 63) / 64) * WORD_SIZE;
+     ((num_fields + 63) / 64) * WORD_SIZE

Review Comment:
   ```suggestion
       ((num_fields + 63) / 64) * WORD_SIZE
   ```



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to