From bef72df32c6f5c9275b82b38b387e9295430814a Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Mon, 22 Jan 2024 21:06:33 +0100 Subject: chore: CI fixes --- src/dynamics/solver/interaction_groups.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/dynamics/solver/interaction_groups.rs') diff --git a/src/dynamics/solver/interaction_groups.rs b/src/dynamics/solver/interaction_groups.rs index 40fbe92..d654a59 100644 --- a/src/dynamics/solver/interaction_groups.rs +++ b/src/dynamics/solver/interaction_groups.rs @@ -32,6 +32,7 @@ impl<'a> PairInteraction for JointGraphEdge { } #[cfg(feature = "parallel")] +#[allow(dead_code)] // That will likely be useful when we re-introduce intra-island parallelism. pub(crate) struct ParallelInteractionGroups { bodies_color: Vec, // Workspace. interaction_indices: Vec, // Workspace. @@ -41,6 +42,7 @@ pub(crate) struct ParallelInteractionGroups { } #[cfg(feature = "parallel")] +#[allow(dead_code)] // That will likely be useful when we re-introduce intra-island parallelism. impl ParallelInteractionGroups { pub fn new() -> Self { Self { -- cgit