mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
remove std::error::Error constraint not needed from AddSpan impl
This commit is contained in:
committed by
Connor Fitzgerald
parent
58cbb93213
commit
a1185b21cc
@@ -327,10 +327,7 @@ pub(crate) trait AddSpan: Sized {
|
||||
fn with_span_handle<T, A: SpanProvider<T>>(self, handle: Handle<T>, arena: &A) -> Self::Output;
|
||||
}
|
||||
|
||||
impl<E> AddSpan for E
|
||||
where
|
||||
E: Error,
|
||||
{
|
||||
impl<E> AddSpan for E {
|
||||
type Output = WithSpan<Self>;
|
||||
|
||||
fn with_span(self) -> WithSpan<Self> {
|
||||
|
||||
Reference in New Issue
Block a user