Skip to content

Commit 6a49b69

Browse files
committed
Allow for Box<dyn StatusEmitter>
1 parent 670c68c commit 6a49b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/status_emitter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ impl<T: StatusEmitter, U: StatusEmitter> StatusEmitter for (T, U) {
543543
}
544544
}
545545

546-
impl<T: StatusEmitter> StatusEmitter for Box<T> {
546+
impl<T: StatusEmitter + ?Sized> StatusEmitter for Box<T> {
547547
fn failed_test<'a>(
548548
&'a self,
549549
revision: &'a str,

0 commit comments

Comments
 (0)