From 4dac0be751ad028ccc75b26d27eb75b47cad1378 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 23 Jun 2017 21:11:31 -0700 Subject: [PATCH] Don't derive Debug for Sign --- src/float/conv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/float/conv.rs b/src/float/conv.rs index ec77f2b..e12349c 100644 --- a/src/float/conv.rs +++ b/src/float/conv.rs @@ -130,7 +130,7 @@ intrinsics! { } } -#[derive(PartialEq, Debug)] +#[derive(PartialEq)] enum Sign { Positive, Negative