From f811accccbafce91c218109f40e0a22ab3868e82 Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Fri, 13 Mar 2020 11:05:44 +0100 Subject: [PATCH] Unnecessary Trait bound DimSub in impl Cholesky --- src/linalg/cholesky.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linalg/cholesky.rs b/src/linalg/cholesky.rs index 67baefb1..23ebdea5 100644 --- a/src/linalg/cholesky.rs +++ b/src/linalg/cholesky.rs @@ -37,7 +37,7 @@ where { } -impl> Cholesky +impl Cholesky where DefaultAllocator: Allocator, {