From 7fed4800733805156f0d157e45b01de405c4b48e Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 30 Apr 2013 13:01:12 -0400 Subject: [PATCH] char: fix unused import warning --- src/libcore/char.rs | 1 + 1 file changed, 1 insertion(+) 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;