andygrove commented on pull request #7061:
URL: https://github.com/apache/arrow/pull/7061#issuecomment-630489059
@vertexclique Looks like a formatting issue needs to be resolved:
```
Diff in /arrow/rust/arrow/src/memory.rs at line 28:
/// As you can see this is global and lives as long as the program lives.
/// Be careful to not write anything to this pointer in any scenario.
/// If you use allocation methods shown here you won't have any problems.
-const BYPASS_PTR: NonNull<u8> =
- unsafe { NonNull::new_unchecked(ALIGNMENT as *mut u8) };
+const BYPASS_PTR: NonNull<u8> = unsafe { NonNull::new_unchecked(ALIGNMENT
as *mut u8) };
pub fn allocate_aligned(size: usize) -> *mut u8 {
unsafe {
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]