1
Fork 0

Adding missing imports for tests, and gate off others

This commit is contained in:
Alex Crichton 2013-02-28 11:57:33 -05:00
parent bc3bee410a
commit cb4ab76e4a
46 changed files with 141 additions and 109 deletions

View file

@ -20,7 +20,7 @@
use at_vec;
use cast;
use char;
use cmp::{Eq, Ord, TotalOrd, Ordering, Less, Equal, Greater};
use cmp::{TotalOrd, Ordering, Less, Equal, Greater};
use libc;
use option::{None, Option, Some};
use ptr;
@ -29,6 +29,8 @@ use u8;
use uint;
use vec;
#[cfg(notest)] use cmp::{Eq, Ord};
/*
Section: Creating a string
*/