1
Fork 0

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]
This commit is contained in:
Alex Crichton 2014-06-25 12:00:27 -07:00
parent 7da94c1a00
commit 2823be08b7
9 changed files with 13 additions and 19 deletions

View file

@ -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