refactor: remove `Send + Sync` impl

This commit is contained in:
Rintaro Itokawa 2024-05-13 13:32:40 +09:00
parent 3725bbffd1
commit 569158143d
No known key found for this signature in database
GPG Key ID: 2D948E50C12E6866
1 changed files with 1 additions and 1 deletions

View File

@ -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,