Skip to content

Commit ad148b0

Browse files
authoredSep 23, 2020
Merge pull request #51 from qryxip/move-allow
Move the `#[allow]` attribute to string.rs
2 parents fdc049e + 12c212e commit ad148b0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ pub mod mincostflow;
88
pub mod modint;
99
pub mod scc;
1010
pub mod segtree;
11-
#[allow(clippy::many_single_char_names)]
1211
pub mod string;
1312
pub mod twosat;
1413

‎src/string.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(clippy::many_single_char_names)]
2+
13
fn sa_naive<T: Ord>(s: &[T]) -> Vec<usize> {
24
let n = s.len();
35
let mut sa: Vec<usize> = (0..n).collect();

0 commit comments

Comments
 (0)
Please sign in to comment.