1
Fork 0

Moved ascii out of str

Removed deriving Ord, which allowed to remove the stage markers
This commit is contained in:
Marvin Löbel 2013-04-22 21:42:25 +02:00
parent df61ec2da6
commit 582a05fc95
4 changed files with 35 additions and 38 deletions

View file

@ -17,12 +17,6 @@
* some heavy-duty uses, try std::rope.
*/
// NOTE: Remove markers after snapshot
#[cfg(stage1)]
#[cfg(stage2)]
#[cfg(stage3)]
pub use self::ascii::{Ascii, AsciiCast, OwnedAsciiCast, ToStrAscii};
use at_vec;
use cast;
use char;
@ -40,13 +34,6 @@ use to_str::ToStr;
#[cfg(notest)] use cmp::{Eq, Ord, Equiv, TotalEq};
// NOTE: Remove markers after snapshot
#[cfg(stage1)]
#[cfg(stage2)]
#[cfg(stage3)]
#[path = "str/ascii.rs"]
mod ascii;
/*
Section: Creating a string
*/