diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2018-02-16 11:33:22 +0100 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2018-05-16 19:08:41 +0200 |
| commit | ee85bfdcc23de49bbc565142efff87b14a7fc775 (patch) | |
| tree | 9164f38859cb5d230e1c7140134e07239a7bb3d5 /src/libcore/lib.rs | |
| parent | 2a3f5367a23a769a068c37460db336de427c4b48 (diff) | |
| download | rust-ee85bfdcc23de49bbc565142efff87b14a7fc775.tar.gz rust-ee85bfdcc23de49bbc565142efff87b14a7fc775.zip | |
Make core::nonzero private
It is now an implementation detail of ptr::NonNull and num::NonZero*
Diffstat (limited to 'src/libcore/lib.rs')
| -rw-r--r-- | src/libcore/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index 54f35d17974..06fbfcecba8 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -171,7 +171,6 @@ pub mod prelude; pub mod intrinsics; pub mod mem; -pub mod nonzero; pub mod ptr; pub mod hint; @@ -221,6 +220,7 @@ pub mod heap { // note: does not need to be public mod iter_private; +mod nonzero; mod tuple; mod unit; |
