mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-21 22:33:49 +00:00
chore: satisfy clippy::ref_as_ptr
This commit is contained in:
parent
aeac0f29fe
commit
63a24d37c3
@ -369,16 +369,16 @@ impl ObservationLog {
|
||||
self.write_location(new_location);
|
||||
self.write_action(&Action::Acquisition {
|
||||
older_rank: older_lock.rank.bit.number(),
|
||||
older_location: older_lock.location as *const _ as usize,
|
||||
older_location: std::ptr::from_ref(older_lock.location) as usize,
|
||||
newer_rank: new_rank.bit.number(),
|
||||
newer_location: new_location as *const _ as usize,
|
||||
newer_location: std::ptr::from_ref(new_location) as usize,
|
||||
});
|
||||
}
|
||||
|
||||
fn write_location(&mut self, location: &'static Location<'static>) {
|
||||
if self.locations_seen.insert(location) {
|
||||
self.write_action(&Action::Location {
|
||||
address: location as *const _ as usize,
|
||||
address: std::ptr::from_ref(location) as usize,
|
||||
file: location.file(),
|
||||
line: location.line(),
|
||||
column: location.column(),
|
||||
|
Loading…
Reference in New Issue
Block a user