diff options
| author | bors <bors@rust-lang.org> | 2015-01-08 09:04:49 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-01-08 09:04:49 +0000 |
| commit | 5364c4853fa61aced8fdf773d9de41b929a0d318 (patch) | |
| tree | a8d02e4e313fe05cf1a401ba7e43347972a84eb2 /src | |
| parent | 5b3cd3900ceda838f5798c30ab96ceb41f962534 (diff) | |
| parent | e7d00ebec7138605ea7d4c826ea4cc92a2f800ce (diff) | |
| download | rust-5364c4853fa61aced8fdf773d9de41b929a0d318.tar.gz rust-5364c4853fa61aced8fdf773d9de41b929a0d318.zip | |
auto merge of #20737 : aturon/rust/stab-stragglers, r=alexcrichton
Marks `vec`, `char` and `fmt` as stable module names.
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcollections/vec.rs | 2 | ||||
| -rw-r--r-- | src/libcore/fmt/mod.rs | 1 | ||||
| -rw-r--r-- | src/libunicode/lib.rs | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index d9344d130b2..69a3947df2b 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -44,6 +44,8 @@ //! let two = xs.pop(); //! ``` +#![stable] + use core::prelude::*; use alloc::boxed::Box; diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs index 69df413a88c..1d3767c9e33 100644 --- a/src/libcore/fmt/mod.rs +++ b/src/libcore/fmt/mod.rs @@ -11,6 +11,7 @@ //! Utilities for formatting and printing strings #![allow(unused_variables)] +#![stable] use any; use cell::{Cell, RefCell, Ref, RefMut}; diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index 33b5bc4b5a4..27255cc33ee 100644 --- a/src/libunicode/lib.rs +++ b/src/libunicode/lib.rs @@ -57,6 +57,7 @@ mod u_str; /// (inclusive) are allowed. A `char` can always be safely cast to a `u32`; /// however the converse is not always true due to the above range limits /// and, as such, should be performed via the `from_u32` function.. +#[stable] pub mod char { pub use core::char::{MAX, from_u32, from_digit}; |
