diff libinterp/dldfcn/ccolamd.cc @ 21602:47c76e56a1de

maint: Remove extra space between end of statement and semicolon. * bsxfun.cc, data.cc, gl-render.cc, graphics.cc, ls-mat4.h, amd.cc, audioread.cc, ccolamd.cc, colamd.cc, eigs-base.cc, sparse-chol.cc, sparse-dmsolve.cc, Sparse-op-defs.h, bicubic.m, sprandsym.m: maint: Remove extra space between end of statement and semicolon.
author Rik <rik@octave.org>
date Sun, 10 Apr 2016 20:45:01 -0700
parents ad0599a0acc6
children d7a268e68e69
line wrap: on
line diff
--- a/libinterp/dldfcn/ccolamd.cc	Sun Apr 10 20:18:22 2016 -0700
+++ b/libinterp/dldfcn/ccolamd.cc	Sun Apr 10 20:45:01 2016 -0700
@@ -285,7 +285,7 @@
       // Order the columns (destroys A)
       if (! CCOLAMD_NAME () (n_row, n_col, Alen, A, p, knobs, stats, cmember))
         {
-          CCOLAMD_NAME (_report) (stats) ;
+          CCOLAMD_NAME (_report) (stats);
 
           error ("ccolamd: internal error!");
         }
@@ -295,7 +295,7 @@
       // Order the columns (destroys A)
       if (! CCOLAMD_NAME () (n_row, n_col, Alen, A, p, knobs, stats, 0))
         {
-          CCOLAMD_NAME (_report) (stats) ;
+          CCOLAMD_NAME (_report) (stats);
 
           error ("ccolamd: internal error!");
         }
@@ -308,23 +308,23 @@
 
   retval(0) = out_perm;
 
-  // print stats if spumoni > 0
+  // print stats if spumoni > 0  
   if (spumoni > 0)
-    CCOLAMD_NAME (_report) (stats) ;
+    CCOLAMD_NAME (_report) (stats);
 
   // Return the stats vector
   if (nargout == 2)
     {
       NDArray out_stats (dim_vector (1, CCOLAMD_STATS));
       for (octave_idx_type i = 0 ; i < CCOLAMD_STATS ; i++)
-        out_stats(i) = stats[i] ;
+        out_stats(i) = stats[i];
       retval(1) = out_stats;
 
       // fix stats (5) and (6), for 1-based information on
       // jumbled matrix.  note that this correction doesn't
       // occur if symamd returns FALSE
-      out_stats (CCOLAMD_INFO1) ++ ;
-      out_stats (CCOLAMD_INFO2) ++ ;
+      out_stats(CCOLAMD_INFO1)++;
+      out_stats(CCOLAMD_INFO2)++;
     }
 
   return retval;
@@ -516,9 +516,9 @@
       if (! CSYMAMD_NAME () (n_col, ridx, cidx, perm, knobs, stats,
                              &calloc, &free, cmember, -1))
         {
-          CSYMAMD_NAME (_report) (stats) ;
+          CSYMAMD_NAME (_report)(stats);
 
-          error ("csymamd: internal error!") ;
+          error ("csymamd: internal error!");
         }
     }
   else
@@ -526,9 +526,9 @@
       if (! CSYMAMD_NAME () (n_col, ridx, cidx, perm, knobs, stats,
                             &calloc, &free, 0, -1))
         {
-          CSYMAMD_NAME (_report) (stats) ;
+          CSYMAMD_NAME (_report)(stats);
 
-          error ("csymamd: internal error!") ;
+          error ("csymamd: internal error!");
         }
     }
 
@@ -541,21 +541,21 @@
 
   // print stats if spumoni > 0
   if (spumoni > 0)
-    CSYMAMD_NAME (_report) (stats) ;
+    CSYMAMD_NAME (_report)(stats);
 
   // Return the stats vector
   if (nargout == 2)
     {
       NDArray out_stats (dim_vector (1, CCOLAMD_STATS));
       for (octave_idx_type i = 0 ; i < CCOLAMD_STATS ; i++)
-        out_stats(i) = stats[i] ;
+        out_stats(i) = stats[i];
       retval(1) = out_stats;
 
       // fix stats (5) and (6), for 1-based information on
       // jumbled matrix.  note that this correction doesn't
       // occur if symamd returns FALSE
-      out_stats (CCOLAMD_INFO1) ++ ;
-      out_stats (CCOLAMD_INFO2) ++ ;
+      out_stats(CCOLAMD_INFO1)++;
+      out_stats(CCOLAMD_INFO2)++;
     }
 
   return retval;