eb3970285b
In order to switch `clippy::uninlined_format_args` from pedantic to style, all existing tests must not raise a warning. I did not want to change the actual tests, so this is a relatively minor change that: * add `#![allow(clippy::uninlined_format_args)]` where needed * normalizes all allow/deny/warn attributes * all allow attributes are grouped together * sorted alphabetically * the `clippy::*` attributes are listed separate from the other ones. * deny and warn attributes are listed before the allowed ones changelog: none
158 lines
4.2 KiB
Plaintext
158 lines
4.2 KiB
Plaintext
error: the loop variable `i` is only used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:11:14
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in &vec {
|
|
| ~~~~~~ ~~~~
|
|
|
|
error: the loop variable `i` is only used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:20:14
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in &vec {
|
|
| ~~~~~~ ~~~~
|
|
|
|
error: the loop variable `j` is only used to index `STATIC`
|
|
--> $DIR/needless_range_loop.rs:25:14
|
|
|
|
|
LL | for j in 0..4 {
|
|
| ^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in &STATIC {
|
|
| ~~~~~~ ~~~~~~~
|
|
|
|
error: the loop variable `j` is only used to index `CONST`
|
|
--> $DIR/needless_range_loop.rs:29:14
|
|
|
|
|
LL | for j in 0..4 {
|
|
| ^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in &CONST {
|
|
| ~~~~~~ ~~~~~~
|
|
|
|
error: the loop variable `i` is used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:33:14
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for (i, <item>) in vec.iter().enumerate() {
|
|
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is only used to index `vec2`
|
|
--> $DIR/needless_range_loop.rs:41:14
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in vec2.iter().take(vec.len()) {
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is only used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:45:14
|
|
|
|
|
LL | for i in 5..vec.len() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in vec.iter().skip(5) {
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is only used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:49:14
|
|
|
|
|
LL | for i in 0..MAX_LEN {
|
|
| ^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in vec.iter().take(MAX_LEN) {
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is only used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:53:14
|
|
|
|
|
LL | for i in 0..=MAX_LEN {
|
|
| ^^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in vec.iter().take(MAX_LEN + 1) {
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is only used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:57:14
|
|
|
|
|
LL | for i in 5..10 {
|
|
| ^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in vec.iter().take(10).skip(5) {
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is only used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:61:14
|
|
|
|
|
LL | for i in 5..=10 {
|
|
| ^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for <item> in vec.iter().take(10 + 1).skip(5) {
|
|
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:65:14
|
|
|
|
|
LL | for i in 5..vec.len() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for (i, <item>) in vec.iter().enumerate().skip(5) {
|
|
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:69:14
|
|
|
|
|
LL | for i in 5..10 {
|
|
| ^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for (i, <item>) in vec.iter().enumerate().take(10).skip(5) {
|
|
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: the loop variable `i` is used to index `vec`
|
|
--> $DIR/needless_range_loop.rs:74:14
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: consider using an iterator
|
|
|
|
|
LL | for (i, <item>) in vec.iter_mut().enumerate() {
|
|
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to 14 previous errors
|
|
|