Skip to content

Commit a14f459

Browse files
committed
Allow clippy::type_complexity
1 parent e7333eb commit a14f459

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rayon-core/src/scope/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ struct ScopeBase<'scope> {
5555
/// all of which outlive `'scope`. They're not actually required to be
5656
/// `Sync`, but it's still safe to let the `Scope` implement `Sync` because
5757
/// the closures are only *moved* across threads to be executed.
58+
#[allow(clippy::type_complexity)]
5859
marker: PhantomData<Box<dyn FnOnce(&Scope<'scope>) + Send + Sync + 'scope>>,
5960
}
6061

0 commit comments

Comments
 (0)