Currently BitArray::set cause :
warning: integer-to-pointer cast
--> C:\Users\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\bitvec-1.0.1\src\ptr\span.rs:254:5
|
254 | (self.ptr.as_ptr() as usize & Self::PTR_ADDR_MASK) as *mut T,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ integer-to-pointer cast
Is it possible to somehow suppress or fix that warning on bitvec side?
Currently
BitArray::setcause :Is it possible to somehow suppress or fix that warning on
bitvecside?