aboutsummaryrefslogtreecommitdiffstats
path: root/math/clblas/files/patch-src_library_blas_xgemm.cc
blob: 4a1d9df863640647e1fbcbc74f3fdabc80a973b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- src/library/blas/xgemm.cc.orig	2016-01-05 17:04:55 UTC
+++ src/library/blas/xgemm.cc
@@ -75,19 +75,19 @@ bool isZero(Precision value);
 template<>
 bool isZero<float>( float value ) {
   return value == 0;
-};
+}
 template<>
 bool isZero<double>( double value ) {
   return value == 0;
-};
+}
 template<>
 bool isZero<FloatComplex>( FloatComplex value ) {
   return CREAL(value) == 0 && CIMAG(value) == 0;
-};
+}
 template<>
 bool isZero<DoubleComplex>( DoubleComplex value ) {
   return CREAL(value) == 0 && CIMAG(value) == 0;
-};
+}
 
 static char *getKernelName(cl_kernel clKernel)
 {