summaryrefslogtreecommitdiff
path: root/rust/src/rc.rs
diff options
context:
space:
mode:
authorergrelet <ergrelet@users.noreply.github.com>2022-06-05 21:03:30 +0200
committerrssor <34997787+rssor@users.noreply.github.com>2022-06-20 14:45:08 -0400
commit317a7dd4437feac20dc420939108c198f01210cd (patch)
tree832213b99314d69eaeb4ed6c500a7fa6293cf03a /rust/src/rc.rs
parent41f7c16c347c8dc0f478139db5e1cc60f7b725cd (diff)
rust: Fix compilation error when compiling with the 'rayon' feature enabled
Diffstat (limited to 'rust/src/rc.rs')
-rw-r--r--rust/src/rc.rs2
1 files changed, 1 insertions, 1 deletions
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<P>
where
- P: 'a + CoreArrayWrapper<'a>,
+ P: 'a + CoreArrayWrapper<'a> + CoreOwnedArrayProvider,
P::Context: Sync,
P::Wrapped: Send,
{