From 569158143d5fab2a0d0aa368c7a5d03a6bd42c3a Mon Sep 17 00:00:00 2001 From: Rintaro Itokawa Date: Mon, 13 May 2024 13:32:40 +0900 Subject: [PATCH] refactor: remove `Send + Sync` impl --- src/eyreish/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eyreish/error.rs b/src/eyreish/error.rs index 14551f7..13c71c3 100644 --- a/src/eyreish/error.rs +++ b/src/eyreish/error.rs @@ -418,7 +418,7 @@ impl Report { } /// Provide source code for this error - pub fn with_source_code(self, source_code: impl SourceCode + Send + Sync + 'static) -> Report { + pub fn with_source_code(self, source_code: impl SourceCode + 'static) -> Report { WithSourceCode { source_code, error: self,