Skip to content

Commit 8c571e0

Browse files
committed
Auto merge of #1269 - gnzlbg:fix_cp_pub, r=gnzlbg
Unnecessary pub use when private module use is available Addresses part of #1266
2 parents fecc1fd + 8eb5066 commit 8c571e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ cfg_if! {
5454
use core::mem;
5555
#[doc(hidden)]
5656
#[allow(unused_imports)]
57-
pub use core::clone::Clone;
57+
use core::clone::Clone;
5858
#[doc(hidden)]
5959
#[allow(unused_imports)]
60-
pub use core::marker::Copy;
60+
use core::marker::Copy;
6161
#[doc(hidden)]
6262
#[allow(unused_imports)]
63-
pub use core::option::Option;
63+
use core::option::Option;
6464
} else {
6565
#[doc(hidden)]
6666
#[allow(unused_imports)]

0 commit comments

Comments
 (0)