From e5176eeeed1e403d65de3ec8a0248f1b2281135a Mon Sep 17 00:00:00 2001 From: Laurence Tratt Date: Sat, 17 Feb 2018 17:57:40 +0000 Subject: [PATCH] Remove std guard. --- src/int.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/int.rs b/src/int.rs index 814020c..5dff308 100644 --- a/src/int.rs +++ b/src/int.rs @@ -1,5 +1,4 @@ use core::ops::{Not, BitAnd, BitOr, BitXor, Shl, Shr}; -#[cfg(feature = "std")] use core::fmt::{Debug, Display}; use {Num, NumCast};