Commit 16c5a4b
Fix BindingType import warning (#10818)
# Objective
Fix this warning
```
warning: unused import: `BindingType`
--> ...bevy/crates/bevy_pbr/src/render/mesh_view_bindings.rs:23:88
|
23 | BindGroup, BindGroupLayout, BindGroupLayoutEntry, BindGroupLayoutEntryBuilder, BindingType,
| ^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
```
## Solution
- Import via globstar
Signed-off-by: Torstein Grindvik <[email protected]>
Co-authored-by: Torstein Grindvik <[email protected]>1 parent 1106597 commit 16c5a4b
1 file changed
+1
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
| 18 | + | |
27 | 19 | | |
28 | 20 | | |
29 | 21 | | |
| |||
0 commit comments