diff src/DLD-FUNCTIONS/ccolamd.cc @ 14844:5bc9b9cb4362

maint: Use Octave coding conventions for cuddled parenthesis in retval assignments. * hello.cc, Array-util.cc, CNDArray.cc, CSparse.cc, Sparse.cc, dNDArray.cc, dSparse.cc, fCNDArray.cc, fNDArray.cc, lo-specfun.cc, list_primes.m, rectangle_lw.m, sinetone.m, amd.cc, bsxfun.cc, ccolamd.cc, eigs.cc, lu.cc, qz.cc, spparms.cc, oct-stream.cc: Use Octave coding conventions for cuddled parenthesis in retval assignments.
author Rik <octave@nomad.inbox5.com>
date Fri, 06 Jul 2012 14:00:25 -0700
parents 72c96de7a403
children 460a3c6d8bf1
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/ccolamd.cc	Fri Jul 06 09:34:35 2012 -0700
+++ b/src/DLD-FUNCTIONS/ccolamd.cc	Fri Jul 06 14:00:25 2012 -0700
@@ -304,7 +304,7 @@
       for (octave_idx_type i = 0; i < n_col; i++)
         out_perm(i) = p [i] + 1;
 
-      retval (0) = out_perm;
+      retval(0) = out_perm;
 
       // print stats if spumoni > 0
       if (spumoni > 0)
@@ -536,7 +536,7 @@
       for (octave_idx_type i = 0; i < n_col; i++)
         out_perm(i) = perm [i] + 1;
 
-      retval (0) = out_perm;
+      retval(0) = out_perm;
 
       // Return the stats vector
       if (nargout == 2)