]> granicus.if.org Git - graphviz/commitdiff
sparse: remove unnecessary casts in 'SparseMatrix_sum_repeat_entries'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 23 May 2022 14:41:08 +0000 (07:41 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 24 Aug 2022 14:07:17 +0000 (07:07 -0700)
lib/sparse/SparseMatrix.c

index 054d11fac753330d2bf205514c2969cbb7b874d9..3ba6852c6f9081d3e78c2463cf71162ead631362 100644 (file)
@@ -1360,7 +1360,7 @@ SparseMatrix SparseMatrix_sum_repeat_entries(SparseMatrix A){
   switch (type){
   case MATRIX_TYPE_REAL:
     {
-      double *a = (double*) A->a;
+      double *a = A->a;
       nz = 0;
       sta = ia[0];
       for (i = 0; i < A->m; i++){
@@ -1381,7 +1381,7 @@ SparseMatrix SparseMatrix_sum_repeat_entries(SparseMatrix A){
     break;
   case MATRIX_TYPE_COMPLEX:
     {
-      double *a = (double*) A->a;
+      double *a = A->a;
       nz = 0;
       sta = ia[0];
       for (i = 0; i < A->m; i++) {
@@ -1404,7 +1404,7 @@ SparseMatrix SparseMatrix_sum_repeat_entries(SparseMatrix A){
     break;
   case MATRIX_TYPE_INTEGER:
     {
-      int *a = (int*) A->a;
+      int *a = A->a;
       nz = 0;
       sta = ia[0];
       for (i = 0; i < A->m; i++){