mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 16:24:24 +00:00
refactor: gate allow(clippy::drop_ref)
behind WASM build
This commit is contained in:
parent
2492956014
commit
fd2ecdd360
@ -606,7 +606,7 @@ impl super::Adapter {
|
||||
// Drop the GL guard so we can move the context into AdapterShared
|
||||
// ( on Wasm the gl handle is just a ref so we tell clippy to allow
|
||||
// dropping the ref )
|
||||
#[allow(clippy::drop_ref)]
|
||||
#[cfg_attr(target_arch = "wasm32", allow(clippy::drop_ref))]
|
||||
drop(gl);
|
||||
|
||||
Some(crate::ExposedAdapter {
|
||||
|
Loading…
Reference in New Issue
Block a user