about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-03-27 15:09:47 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-03-31 15:17:12 -0700
commit9a3d04ae7629f6f273643b3a14f106726842be6a (patch)
tree7d8d5fc852d9256b31c7ac892ab3df07f0cfe62c /src/libstd/lib.rs
parentf2a5c7a179ab0fc0e415918c1fc5d280a9e02ede (diff)
downloadrust-9a3d04ae7629f6f273643b3a14f106726842be6a.tar.gz
rust-9a3d04ae7629f6f273643b3a14f106726842be6a.zip
std: Switch field privacy as necessary
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index c130b89b6d4..ab75031e914 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -57,7 +57,9 @@
 // Don't link to std. We are std.
 #![no_std]
 
-#![deny(missing_doc)]
+// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
+#![allow(missing_doc)] // NOTE: remove after a stage0 snap
+#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
 
 // When testing libstd, bring in libuv as the I/O backend so tests can print
 // things and all of the std::io tests have an I/O interface to run on top