Skip to content

Commit

Permalink
Remove unnecessary .clone()
Browse files Browse the repository at this point in the history
  • Loading branch information
jfkthame committed Mar 4, 2024
1 parent 77ca01f commit 7233d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prepare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pub fn isolating_run_sequences(
};

isolating_run_sequences.push(IsolatingRunSequence {
runs: vec![run.clone()],
runs: vec![run],
sos: max(seq_level, pred_level).bidi_class(),
eos: max(end_level, succ_level).bidi_class(),
});
Expand Down

0 comments on commit 7233d8d

Please sign in to comment.