core: Mark more mods as demoded

This commit is contained in:
Brian Anderson 2012-09-25 12:04:02 -07:00
parent ee7fa194fa
commit 37aee97e4b
3 changed files with 12 additions and 0 deletions

View File

@ -4,6 +4,10 @@ Sendable hash maps. Very much a work in progress.
*/
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use cmp::Eq;
use hash::Hash;
use to_bytes::IterBytes;

View File

@ -1,5 +1,9 @@
//! Operations on unique pointer types
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use cmp::{Eq, Ord};
impl<T:Eq> ~const T : Eq {

View File

@ -4,6 +4,10 @@ Functions for the unit type.
*/
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
use cmp::{Eq, Ord};
impl () : Eq {