You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are ~2000 unsafe operations being performed in itx.rs (currently split between itx_tmpl_16.rs and itx_tmpl_8.rs, #683 should be merged before working on this task).
Cleanup unsafe operations happening within functions.
Mark any functions that can be made fully safe as such.
Add unsafe blocks around any remaining unsafe operations along with standard safety documentation.
Add safety documentation for functions that need to remain unsafe.
Add #![deny(unsafe_op_in_unsafe_fn)] to file.
The text was updated successfully, but these errors were encountered:
There are ~2000 unsafe operations being performed in
itx.rs
(currently split betweenitx_tmpl_16.rs
anditx_tmpl_8.rs
, #683 should be merged before working on this task).unsafe
blocks around any remaining unsafe operations along with standard safety documentation.#![deny(unsafe_op_in_unsafe_fn)]
to file.The text was updated successfully, but these errors were encountered: