From 0bcbd4df4b7bf7782e6f87a0312c9037ae8d3b8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 13 Sep 2015 23:53:28 +0200 Subject: [PATCH] Removed unused import. --- src/structs/dmat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structs/dmat.rs b/src/structs/dmat.rs index ebbf0ce9..7cf5ab7f 100644 --- a/src/structs/dmat.rs +++ b/src/structs/dmat.rs @@ -5,7 +5,7 @@ use std::cmp; use std::iter::repeat; use std::ops::{Add, Sub, Mul, Div, Index, IndexMut}; -use std::fmt::{Debug, Display, Formatter, Result}; +use std::fmt::{Debug, Formatter, Result}; use rand::{self, Rand}; use num::{Zero, One}; use structs::dvec::DVec;