diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-12-30 12:04:12 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2015-01-05 12:28:54 +1100 |
| commit | abdeefdbcc96e0f270a4f74892589e1e6cb9b928 (patch) | |
| tree | 80bf401b7c94a910f23981505781f326e82eb434 | |
| parent | 5773bdefff2e47cc007f5cc2af3f80b30303d45a (diff) | |
| download | rust-abdeefdbcc96e0f270a4f74892589e1e6cb9b928.tar.gz rust-abdeefdbcc96e0f270a4f74892589e1e6cb9b928.zip | |
Remove deprecated functionality from `char`.
| -rw-r--r-- | src/libunicode/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index 72e9ce2bcaf..1a619e57a9c 100644 --- a/src/libunicode/lib.rs +++ b/src/libunicode/lib.rs @@ -58,9 +58,7 @@ mod u_str; /// however the converse is not always true due to the above range limits /// and, as such, should be performed via the `from_u32` function.. pub mod char { - pub use core::char::{MAX, from_u32}; - pub use core::char::{from_digit}; - pub use core::char::Char; + pub use core::char::{MAX, from_u32, from_digit, Char}; pub use normalize::{decompose_canonical, decompose_compatible, compose}; |
