Skip to content

Commit aab228a

Browse files
committed
clippy: Remove unnecessary qualification
1 parent e6d80ba commit aab228a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ash-examples/src/bin/texture.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ fn main() {
301301
.unwrap();
302302
let mut image_slice = Align::new(
303303
image_ptr,
304-
std::mem::align_of::<u8>() as u64,
304+
align_of::<u8>() as u64,
305305
image_buffer_memory_req.size,
306306
);
307307
image_slice.copy_from_slice(&image_data);

0 commit comments

Comments
 (0)