From 317a7dd4437feac20dc420939108c198f01210cd Mon Sep 17 00:00:00 2001 From: ergrelet Date: Sun, 5 Jun 2022 21:03:30 +0200 Subject: rust: Fix compilation error when compiling with the 'rayon' feature enabled --- rust/src/rc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src') diff --git a/rust/src/rc.rs b/rust/src/rc.rs index a55c46d2..e15bbeef 100644 --- a/rust/src/rc.rs +++ b/rust/src/rc.rs @@ -363,7 +363,7 @@ use rayon::iter::plumbing::*; #[cfg(feature = "rayon")] impl<'a, P> Array

where - P: 'a + CoreArrayWrapper<'a>, + P: 'a + CoreArrayWrapper<'a> + CoreOwnedArrayProvider, P::Context: Sync, P::Wrapped: Send, { -- cgit v1.3.1