aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/libs/BLAS/c_interface_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'bench/btl/libs/BLAS/c_interface_base.h')
-rw-r--r--bench/btl/libs/BLAS/c_interface_base.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/btl/libs/BLAS/c_interface_base.h b/bench/btl/libs/BLAS/c_interface_base.h
index 515d8dcfc..de613803b 100644
--- a/bench/btl/libs/BLAS/c_interface_base.h
+++ b/bench/btl/libs/BLAS/c_interface_base.h
@@ -17,12 +17,12 @@ public:
typedef real* gene_matrix;
typedef real* gene_vector;
- static void free_matrix(gene_matrix & A, int N){
- delete A;
+ static void free_matrix(gene_matrix & A, int /*N*/){
+ delete[] A;
}
static void free_vector(gene_vector & B){
- delete B;
+ delete[] B;
}
static inline void matrix_from_stl(gene_matrix & A, stl_matrix & A_stl){