diff options
Diffstat (limited to 'math/lapack++/files/patch-include:blas++.h')
-rw-r--r-- | math/lapack++/files/patch-include:blas++.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/math/lapack++/files/patch-include:blas++.h b/math/lapack++/files/patch-include:blas++.h deleted file mode 100644 index c4fbea5..0000000 --- a/math/lapack++/files/patch-include:blas++.h +++ /dev/null @@ -1,15 +0,0 @@ ---- include/blas++.h~ Tue Nov 19 13:30:26 2002 -+++ include/blas++.h Tue Nov 19 13:32:03 2002 -@@ -11,7 +11,11 @@ - #include "blas2++.h" - #include "blas3++.h" - --double abs(double); -+inline double abs(double a) -+{ -+ if(a>=0) return a; -+ return -a; -+} - - //------------------------------------- - // Vector/Vector operators |