about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-25 12:00:27 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-25 12:47:56 -0700
commit2823be08b7d1b9106cbbd454437384c093c5a5fa (patch)
tree2971066c674ce2d6b1e962431166bed03922f0e6 /src/libstd
parent7da94c1a00104e25901b6b571bca1b03990d4467 (diff)
downloadrust-2823be08b7d1b9106cbbd454437384c093c5a5fa.tar.gz
rust-2823be08b7d1b9106cbbd454437384c093c5a5fa.zip
Register new snapshots
This change starts denying `*T` in the parser. All code using `*T` should ensure
that the FFI call does indeed take `const T*` on the other side before renaming
the type to `*const T`.

Otherwise, all code can rename `*T` to `*const T`.

[breaking-change]
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 8106d516dad..d1029c7a9ba 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -111,7 +111,6 @@
 #![no_std]
 
 #![allow(deprecated)]
-#![allow(unknown_features)] // NOTE: remove after stage0 snapshot
 #![deny(missing_doc)]
 
 // When testing libstd, bring in libuv as the I/O backend so tests can print