Skip to content

Commit

Permalink
Fixed clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
39ali committed Jul 23, 2023
1 parent cd7959a commit 3b90b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wgpu/tests/partially_bounded_arrays/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fn partially_bounded_array() {

let texture_view = storage_texture.create_view(&wgpu::TextureViewDescriptor::default());

let size = std::mem::size_of::<f32>() as u64 * 4 as u64;
let size = std::mem::size_of::<f32>() as u64 * 4_u64;
let staging_buffer = device.create_buffer(&wgpu::BufferDescriptor {
label: None,
size,
Expand Down

0 comments on commit 3b90b8b

Please sign in to comment.