Skip to content

Commit

Permalink
chore(clippy): satisfy unused_qualifications
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Jul 5, 2024
1 parent 25bc704 commit 2daff77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion naga/src/front/spv/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4335,7 +4335,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {

if !self.upgrade_atomics.is_empty() {
log::info!("Upgrading atomic pointers...");
module.upgrade_atomics(std::mem::take(&mut self.upgrade_atomics))?;
module.upgrade_atomics(mem::take(&mut self.upgrade_atomics))?;
}

// Do entry point specific processing after all functions are parsed so that we can
Expand Down

0 comments on commit 2daff77

Please sign in to comment.