diff libinterp/octave-value/ov-cx-sparse.cc @ 18903:3bffa847d215

maint: Use space after variable name and before equals sign. * ov-bool-sparse.cc (octave_sparse_bool_matrix::save_binary): Use "itmp = ..." rather than "itmp= ..." ov-cx-sparse.cc (octave_sparse_complex_matrix::save_binary): Use "itmp = ..." rather than "itmp= ..." ov-re-sparse.cc (octave_sparse_matrix::save_binary): Use "itmp = ..." rather than "itmp= ..."
author Rik <rik@octave.org>
date Wed, 07 May 2014 09:09:43 -0700
parents 6113e0c6920b
children 76478d2da117
line wrap: on
line diff
--- a/libinterp/octave-value/ov-cx-sparse.cc
+++ b/libinterp/octave-value/ov-cx-sparse.cc
@@ -241,16 +241,16 @@
 
   int32_t itmp;
   // Use negative value for ndims to be consistent with other formats
-  itmp= -2;
+  itmp = -2;
   os.write (reinterpret_cast<char *> (&itmp), 4);
 
-  itmp= nr;
+  itmp = nr;
   os.write (reinterpret_cast<char *> (&itmp), 4);
 
-  itmp= nc;
+  itmp = nc;
   os.write (reinterpret_cast<char *> (&itmp), 4);
 
-  itmp= nz;
+  itmp = nz;
   os.write (reinterpret_cast<char *> (&itmp), 4);
 
   save_type st = LS_DOUBLE;