Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 99bb0b0

Browse files
committed
Rust update was breaking this
1 parent 6ee38d0 commit 99bb0b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hypervisor/src/intel/addresses.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ impl PhysicalAddress {
7676
}
7777
}
7878

79-
impl const Deref for PhysicalAddress {
79+
impl Deref for PhysicalAddress {
8080
type Target = PAddr;
8181

8282
/// Dereferences the `PhysicalAddress` to retrieve the underlying `PAddr`.
@@ -85,7 +85,7 @@ impl const Deref for PhysicalAddress {
8585
}
8686
}
8787

88-
impl const DerefMut for PhysicalAddress {
88+
impl DerefMut for PhysicalAddress {
8989
/// Provides mutable access to the underlying `PAddr`.
9090
fn deref_mut(&mut self) -> &mut Self::Target {
9191
&mut self.0

0 commit comments

Comments
 (0)