Skip to content

Commit

Permalink
allow dead code in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
thvdveld committed Sep 16, 2024
1 parent 7ca7306 commit a101132
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/benchmark.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/dhcp_client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports, clippy::option_map_unit_fn)]
#![allow(dead_code, clippy::option_map_unit_fn)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/dns.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/httpclient.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/multicast.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/multicast6.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/ping.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down
2 changes: 1 addition & 1 deletion examples/server.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused_imports)]
#![allow(dead_code)]

mod utils;

Expand Down

0 comments on commit a101132

Please sign in to comment.