Skip to content

Commit 235bb3f

Browse files
committedJul 29, 2014
Add deprecated aliases for the old {Owned,}StrAsciiExt trait names.
The deprecation warning does not seem to be emitted right now, but hopefully that’ll be fixed.
1 parent b86574b commit 235bb3f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎src/libstd/ascii.rs

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ use string::String;
2626
use to_string::IntoStr;
2727
use vec::Vec;
2828

29+
#[deprecated="this trait has been renamed to `AsciiExt`"]
30+
pub use StrAsciiExt = self::AsciiExt;
31+
32+
#[deprecated="this trait has been renamed to `OwnedAsciiExt`"]
33+
pub use OwnedStrAsciiExt = self::OwnedAsciiExt;
34+
35+
2936
/// Datatype to hold one ascii character. It wraps a `u8`, with the highest bit always zero.
3037
#[deriving(Clone, PartialEq, PartialOrd, Ord, Eq, Hash)]
3138
pub struct Ascii { chr: u8 }

0 commit comments

Comments
 (0)