Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(x86_64): make use of
static mut
safer (#468)
Apparently taking a reference to a `static mut` is going to be disallowed by a future compiler, and we should use `addr_of!` instead. This is because `static mut`s are only sound to access through a raw pointer.
- Loading branch information