Skip to content

Commit

Permalink
Merge branch 'trunk' into memcfg
Browse files Browse the repository at this point in the history
  • Loading branch information
nical authored Jul 8, 2024
2 parents 51d069d + 2cffa1d commit 10e2eac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: ${{ failure() }}

- name: Deploy the docs
uses: JamesIves/[email protected].1
uses: JamesIves/[email protected].3
if: github.ref == 'refs/heads/trunk'
with:
token: ${{ secrets.WEB_DEPLOY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: cargo xtask run-wasm --no-serve

- name: Deploy WebGPU examples
uses: JamesIves/[email protected].1
uses: JamesIves/[email protected].3
if: github.ref == 'refs/heads/trunk'
with:
token: ${{ secrets.WEB_DEPLOY }}
Expand Down
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 10e2eac

Please sign in to comment.