Created
March 30, 2015 20:53
-
-
Save emberian/54b3df3cdfbd592764fa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/lib.rs b/src/lib.rs | |
index f42314b..3a92934 100644 | |
--- a/src/lib.rs | |
+++ b/src/lib.rs | |
@@ -281,7 +281,7 @@ unsafe impl Num for C { | |
unsafe impl Complex for C { | |
#[inline(always)] | |
- fn dotc() -> unsafe extern fn(blasint, *const <C as Num>::Float, blasint, *const <C as Num>::Float, blasint) -> <C as Num>::RetSelf { cblas_cdotc } | |
+ fn dotc() -> unsafe extern fn(blasint, *const C::Float, blasint, *const C::Float, blasint) -> C::RetSelf { cblas_cdotc } | |
#[inline(always)] | |
fn dotu_sub() -> unsafe extern fn(blasint, *const <C as Num>::Float, blasint, *const <C as Num>::Float, blasint, *mut <C as Num>::RetSelf) -> () { cblas_cdotu_sub } | |
#[inline(always)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment