Skip to content

Commit 352d7a2

Browse files
committed
add allow(mismatched_lifetime_syntaxes)
1 parent 2cabaf4 commit 352d7a2

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

tests/unit/flatbuffers/containers/flat_multimap.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
#[allow(dead_code, clippy::all, unused_imports, unsafe_code)]
1+
#[allow(unknown_lints)]
2+
#[allow(
3+
dead_code,
4+
clippy::all,
5+
unused_imports,
6+
unsafe_code,
7+
mismatched_lifetime_syntaxes
8+
)]
29
#[path = "./test_containers_generated.rs"]
310
pub mod flat;
411
#[cfg(test)]

tests/unit/flatbuffers/containers/flat_set.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
#[allow(dead_code, clippy::all, unused_imports, unsafe_code)]
1+
#[allow(unknown_lints)]
2+
#[allow(
3+
dead_code,
4+
clippy::all,
5+
unused_imports,
6+
unsafe_code,
7+
mismatched_lifetime_syntaxes
8+
)]
29
#[path = "./test_containers_generated.rs"]
310
pub mod flat;
411
#[cfg(test)]

0 commit comments

Comments
 (0)