mirror of https://github.com/zkat/miette.git
refactor: remove `Send + Sync` impl
This commit is contained in:
parent
3725bbffd1
commit
569158143d
|
|
@ -418,7 +418,7 @@ impl Report {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Provide source code for this error
|
/// 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 {
|
WithSourceCode {
|
||||||
source_code,
|
source_code,
|
||||||
error: self,
|
error: self,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue