Skip to content

Commit a7f0d8e

Browse files
committed
Fix clippy warnings
1 parent c36f548 commit a7f0d8e

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/hostfxr/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ pub use library::*;
55
mod library1_0;
66
#[cfg(feature = "netcore1_0")]
77
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "netcore1_0")))]
8+
#[allow(unused)]
89
pub use library1_0::*;
910

1011
#[cfg(feature = "netcore2_1")]
@@ -17,6 +18,7 @@ pub use library2_1::*;
1718
mod library3_0;
1819
#[cfg(feature = "netcore3_0")]
1920
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "netcore3_0")))]
21+
#[allow(unused)]
2022
pub use library3_0::*;
2123

2224
#[cfg(feature = "net6_0")]
@@ -41,6 +43,7 @@ pub use delegate_loader::*;
4143
mod runtime_property;
4244
#[cfg(feature = "netcore3_0")]
4345
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "netcore3_0")))]
46+
#[allow(unused)]
4447
pub use runtime_property::*;
4548

4649
#[cfg(feature = "netcore3_0")]

src/pdcstring/impl/other/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ mod pdcstr;
77
pub use pdcstr::*;
88

99
mod pdcstring;
10+
#[allow(unused)]
1011
pub use pdcstring::*;
1112

1213
mod error;
14+
#[allow(unused)]
1315
pub use error::*;
1416

1517
mod ext;

src/pdcstring/impl/windows/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ mod pdcstr;
77
pub use pdcstr::*;
88

99
mod pdcstring;
10+
#[allow(unused)]
1011
pub use pdcstring::*;
1112

1213
mod error;
14+
#[allow(unused)]
1315
pub use error::*;
1416

1517
mod ext;

0 commit comments

Comments
 (0)