Skip to content
Snippets Groups Projects
Commit 8c571e0c authored by bors's avatar bors
Browse files

Auto merge of #1269 - gnzlbg:fix_cp_pub, r=gnzlbg

Unnecessary pub use when private module use is available

Addresses part of #1266
parents fecc1fd6 8eb50662
No related branches found
No related tags found
No related merge requests found
......@@ -54,13 +54,13 @@ cfg_if! {
use core::mem;
#[doc(hidden)]
#[allow(unused_imports)]
pub use core::clone::Clone;
use core::clone::Clone;
#[doc(hidden)]
#[allow(unused_imports)]
pub use core::marker::Copy;
use core::marker::Copy;
#[doc(hidden)]
#[allow(unused_imports)]
pub use core::option::Option;
use core::option::Option;
} else {
#[doc(hidden)]
#[allow(unused_imports)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment