Change Show to Debug

Fixes deprecation warning
This commit is contained in:
Matt Brubeck 2015-02-03 11:05:55 -08:00
parent 14082ffb48
commit b324415930
1 changed files with 1 additions and 1 deletions

View File

@ -1037,7 +1037,7 @@ fn get_radix_base(radix: usize) -> (DoubleBigDigit, usize) {
}
/// A Sign is a `BigInt`'s composing element.
#[derive(PartialEq, PartialOrd, Eq, Ord, Copy, Clone, Show, RustcEncodable, RustcDecodable)]
#[derive(PartialEq, PartialOrd, Eq, Ord, Copy, Clone, Debug, RustcEncodable, RustcDecodable)]
pub enum Sign { Minus, NoSign, Plus }
impl Neg for Sign {