265 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
266 |
#[allow(clippy::needless_continue)]
|
267 |
fn parse_lit_str_cooked(mut s: &str) -> (Box<str>, Box<str>) {
|
359 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
360 |
#[allow(clippy::needless_continue)]
|
361 |
fn parse_lit_byte_str_cooked(mut s: &str) -> Vec<u8> {
|
37 |
if line.starts_with("; Module") {
|
38 |
#[allow(clippy::needless_continue)] // silly clippy, readability suffers otherwise
|
39 |
continue;
|
545 |
feature = "cargo-clippy",
|
546 |
allow(needless_continue)
|
547 |
)]
|
606 |
feature = "cargo-clippy",
|
607 |
allow(needless_continue)
|
608 |
)]
|
450 |
#[cfg_attr(
|
451 |
feature = "cargo-clippy", allow(needless_continue)
|
452 |
)]
|
510 |
#[cfg_attr(
|
511 |
feature = "cargo-clippy", allow(needless_continue)
|
512 |
)]
|
478 |
#[cfg_attr(feature = "cargo-clippy",
|
479 |
allow(needless_continue))]
|
480 |
for m in 0..8 {
|
540 |
#[cfg_attr(feature = "cargo-clippy",
|
541 |
allow(needless_continue))]
|
542 |
for m in 0..16 {
|
655 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
656 |
#[cfg_attr(feature = "cargo-clippy", allow(needless_continue))]
|
657 |
fn parse_lit_str_cooked(mut s: &str) -> String {
|
743 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
744 |
#[cfg_attr(feature = "cargo-clippy", allow(needless_continue))]
|
745 |
fn parse_lit_byte_str_cooked(mut s: &str) -> Vec<u8> {
|
1087 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
1088 |
#[allow(clippy::needless_continue)]
|
1089 |
fn parse_lit_str_cooked(mut s: &str) -> (Box<str>, Box<str>) {
|
1180 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
1181 |
#[allow(clippy::needless_continue)]
|
1182 |
fn parse_lit_byte_str_cooked(mut s: &str) -> (Vec<u8>, Box<str>) {
|
968 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
969 |
#[allow(clippy::needless_continue)]
|
970 |
fn parse_lit_str_cooked(mut s: &str) -> (Box<str>, Box<str>) {
|
1062 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
1063 |
#[allow(clippy::needless_continue)]
|
1064 |
fn parse_lit_byte_str_cooked(mut s: &str) -> Vec<u8> {
|
899 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
900 |
#[allow(clippy::needless_continue)]
|
901 |
fn parse_lit_str_cooked(mut s: &str) -> (Box<str>, Box<str>) {
|
993 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
994 |
#[allow(clippy::needless_continue)]
|
995 |
fn parse_lit_byte_str_cooked(mut s: &str) -> Vec<u8> {
|
729 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
730 |
#[cfg_attr(feature = "cargo-clippy", allow(needless_continue))]
|
731 |
fn parse_lit_str_cooked(mut s: &str) -> String {
|
817 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
818 |
#[cfg_attr(feature = "cargo-clippy", allow(needless_continue))]
|
819 |
fn parse_lit_byte_str_cooked(mut s: &str) -> Vec<u8> {
|
147 |
#[test]
|
148 |
#[allow(clippy::needless_continue)]
|
149 |
fn some_or_continue() {
|
181 |
#[test]
|
182 |
#[allow(clippy::needless_continue)]
|
183 |
fn ok_or_continue() {
|
31 |
// https://github.com/rust-lang-nursery/rust-clippy/issues/2329
|
32 |
#[allow(clippy::needless_continue)]
|
33 |
fn parse_lit_str_cooked(mut s: &str) -> String {
|