core: Mark three more trivial mods as demoded

This commit is contained in:
Brian Anderson 2012-09-20 17:18:18 -07:00
parent 1b5efaac27
commit ee426f177b
3 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,9 @@
#[doc(hidden)];
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use libc::{c_char, c_void, intptr_t, uintptr_t};
use ptr::{mut_null, null, to_unsafe_ptr};
use repr::BoxRepr;

View File

@ -1,5 +1,9 @@
//! The trait for types that can be created from strings
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use option::Option;
trait FromStr {

View File

@ -1,5 +1,9 @@
//! Logging
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
export console_on, console_off;
#[nolink]