Skip to content

Commit

Permalink
Update src/split_at.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Reichold <[email protected]>
  • Loading branch information
bluss and adamreichold authored Feb 26, 2024
1 parent c033453 commit 3abf961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/split_at.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub(crate) trait SplitAt {
}

pub(crate) trait SplitPreference : SplitAt {
#[allow(dead_code)]
#[allow(dead_code)] // used only when Rayon support is enabled
fn can_split(&self) -> bool;
fn split_preference(&self) -> (Axis, usize);
fn split(self) -> (Self, Self) where Self: Sized {
Expand Down

0 comments on commit 3abf961

Please sign in to comment.