diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-04-30 13:01:12 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-04-30 13:01:12 -0400 |
| commit | 7fed4800733805156f0d157e45b01de405c4b48e (patch) | |
| tree | 1a14c7a7c35c36e01a0e65444c43692491c8bc7e | |
| parent | c081ffbd1e845687202a975ea2e698b623e5722f (diff) | |
| download | rust-7fed4800733805156f0d157e45b01de405c4b48e.tar.gz rust-7fed4800733805156f0d157e45b01de405c4b48e.zip | |
char: fix unused import warning
| -rw-r--r-- | src/libcore/char.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/char.rs b/src/libcore/char.rs index ef2bd91e973..7868b463807 100644 --- a/src/libcore/char.rs +++ b/src/libcore/char.rs @@ -10,6 +10,7 @@ //! Utilities for manipulating the char type +#[cfg(notest)] use cmp::Ord; use option::{None, Option, Some}; use str; |
