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
This removes `Add`/`AddAssign`/`Sub`/`SubAssign` with `usize` from
`VirtAddr` and `PhysAddr` (which are always 64-bit, even on 32-bit
platforms). This makes it possible to write code like:
```rust
let addr1 = PhysAddr::new(0x52);
let addr2 = addr1 + 3;
```
without getting a "multiple `impl`s" compiler error.
This is essentially the breaking change mentioned in
rust-osdev/x86_64#293 (comment)
Signed-off-by: Joe Richey <[email protected]>
0 commit comments