Moved ascii out of str
Removed deriving Ord, which allowed to remove the stage markers
This commit is contained in:
parent
df61ec2da6
commit
582a05fc95
4 changed files with 35 additions and 38 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue