Skip to content

Commit b0d7a88

Browse files
authored
Don't #[allow(type_alias_bounds)].
1 parent 1d8b50e commit b0d7a88

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/hal/src/command/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ unsafe impl<'a, B: Backend, C, L: Level> Submittable<'a, B, C, L> for &'a Submit
9090
}
9191

9292
/// A convenience alias for not typing out the full signature of a secondary command buffer.
93-
#[allow(type_alias_bounds)]
94-
pub type SecondaryCommandBuffer<'a, B: Backend, C, S: Shot = OneShot> = CommandBuffer<'a, B, C, S, Secondary>;
93+
pub type SecondaryCommandBuffer<'a, B, C, S = OneShot> = CommandBuffer<'a, B, C, S, Secondary>;
9594

9695
/// A strongly-typed command buffer that will only implement methods that are valid for the operations
9796
/// it supports.

0 commit comments

Comments
 (0)