about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2014-03-22 18:45:47 -0400
committerDaniel Micay <danielmicay@gmail.com>2014-03-22 22:33:16 -0400
commit31d5ffc5bde1d67356d1d0469fec34c6d06a32b5 (patch)
tree8a3b1e44b0e50bdac74970936d4e733805157566 /src/libstd/lib.rs
parent7e7a5e3d3eabe0ee46474b0eb701c159a45b490f (diff)
downloadrust-31d5ffc5bde1d67356d1d0469fec34c6d06a32b5.tar.gz
rust-31d5ffc5bde1d67356d1d0469fec34c6d06a32b5.zip
make std::managed private
This removes two tests built on `managed::refcount`, but these issues
are well-covered elsewhere for non-managed types.
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 7d734469b12..8a890d0293c 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -134,7 +134,7 @@ pub mod ascii;
 
 pub mod ptr;
 pub mod owned;
-pub mod managed;
+mod managed;
 mod reference;
 pub mod rc;
 pub mod gc;