changeset 15022:e47b4e8c2714

maint: Use space after OCTAVE_LOCAL_BUFFER invocation in liboctave source code. * MatrixType.cc, Sparse-perm-op-defs.h, oct-locbuf.h: Use space after OCTAVE_LOCAL_BUFFER invocation in liboctave source code.
author Rik <rik@octave.org>
date Thu, 26 Jul 2012 09:43:23 -0700
parents 0fd364b9bf63
children 75d1bc2fd6d2
files liboctave/MatrixType.cc liboctave/Sparse-perm-op-defs.h liboctave/oct-locbuf.h
diffstat 3 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/MatrixType.cc	Thu Jul 26 09:32:11 2012 -0700
+++ b/liboctave/MatrixType.cc	Thu Jul 26 09:43:23 2012 -0700
@@ -74,7 +74,7 @@
       bool hermitian = true;
 
       // do the checks for lower/upper/hermitian all in one pass.
-      OCTAVE_LOCAL_BUFFER(T, diag, ncols);
+      OCTAVE_LOCAL_BUFFER (T, diag, ncols);
 
       for (octave_idx_type j = 0;
            j < ncols && upper; j++)
@@ -132,7 +132,7 @@
       bool hermitian = true;
 
       // do the checks for lower/upper/hermitian all in one pass.
-      OCTAVE_LOCAL_BUFFER(T, diag, ncols);
+      OCTAVE_LOCAL_BUFFER (T, diag, ncols);
 
       for (octave_idx_type j = 0;
            j < ncols && upper; j++)
--- a/liboctave/Sparse-perm-op-defs.h	Thu Jul 26 09:32:11 2012 -0700
+++ b/liboctave/Sparse-perm-op-defs.h	Thu Jul 26 09:43:23 2012 -0700
@@ -71,7 +71,7 @@
     {
       // Form the column permutation and then call the colpm_sm routine.
       const octave_idx_type *prow = p.pvec ().data ();
-      OCTAVE_LOCAL_BUFFER(octave_idx_type, pcol, nr);
+      OCTAVE_LOCAL_BUFFER (octave_idx_type, pcol, nr);
       for (octave_idx_type i = 0; i < nr; ++i)
         pcol[prow[i]] = i;
       return octinternal_do_mul_colpm_sm (pcol, a);
--- a/liboctave/oct-locbuf.h	Thu Jul 26 09:32:11 2012 -0700
+++ b/liboctave/oct-locbuf.h	Thu Jul 26 09:43:23 2012 -0700
@@ -204,7 +204,7 @@
 // about shadowed parameters.
 
 #define OCTAVE_LOCAL_BUFFER_INIT(T, buf, size, value) \
-  OCTAVE_LOCAL_BUFFER(T, buf, size); \
+  OCTAVE_LOCAL_BUFFER (T, buf, size); \
   for (size_t _buf_iter = 0, _buf_size = size; \
         _buf_iter < _buf_size; _buf_iter++) \
     buf[_buf_iter] = value