Skip to content

Commit e4f3f2b

Browse files
committed
Remove incorrect Error derive
1 parent 9ca7955 commit e4f3f2b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/std/src/errors/backtrace.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
use core::fmt::{Debug, Display, Formatter, Result};
2-
use thiserror::Error;
32

43
/// This wraps an actual backtrace to achieve two things:
54
/// - being able to fill this with a stub implementation in `no_std` environments
65
/// - being able to use this in conjunction with [`thiserror::Error`]
7-
#[derive(Error)]
86
pub struct BT(Box<dyn Printable>);
97

108
impl BT {

0 commit comments

Comments
 (0)