Remove FullRange from the prelude etc.

This commit is contained in:
Nick Cameron
2015-01-28 14:54:25 +13:00
parent a9d465fec9
commit c64a96d385
5 changed files with 14 additions and 0 deletions

View File

@@ -19,7 +19,10 @@ use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering};
use fmt;
use hash::{Hash, Hasher, self};
use marker::Copy;
#[cfg(stage0)]
use ops::{Deref, FullRange};
#[cfg(not(stage0))]
use ops::Deref;
use option::Option;
// macro for implementing n-ary tuple functions and operations