diff libinterp/octave-value/ov-cx-sparse.cc @ 23432:e35a5c1233d0

maint: Use convention 'int *x' for naming pointers. * annotation-dialog.h, files-dock-widget.cc, find-files-dialog.cc, find-files-dialog.h, file-editor.cc, file-editor.h, main-window.cc, main-window.h, octave-dock-widget.cc, parser.h, settings-dialog.h, load-save.cc, mex.cc, pr-output.cc, symtab.cc, __ode15__.cc, ov-bool-sparse.cc, ov-cx-sparse.cc, ov-fcn-inline.cc, ov-re-sparse.cc, Sparse.cc, idx-vector.cc, idx-vector.h: Use convention 'int *x' for naming pointers.
author Rik <rik@octave.org>
date Mon, 24 Apr 2017 14:38:34 -0700
parents 092078913d54
children 21baad6b35c4
line wrap: on
line diff
--- a/libinterp/octave-value/ov-cx-sparse.cc	Sun Apr 23 22:01:49 2017 +0200
+++ b/libinterp/octave-value/ov-cx-sparse.cc	Mon Apr 24 14:38:34 2017 -0700
@@ -497,7 +497,7 @@
       return false;
     }
 
-  octave_idx_type * itmp = m.xcidx ();
+  octave_idx_type *itmp = m.xcidx ();
   retval = H5Dwrite (data_hid, H5T_NATIVE_IDX, octave_H5S_ALL, octave_H5S_ALL,
                      octave_H5P_DEFAULT, itmp) >= 0;
   H5Dclose (data_hid);
@@ -596,7 +596,7 @@
   retval = false;
   if (complex_type_hid >= 0)
     {
-      Complex * ctmp = m.xdata ();
+      Complex *ctmp = m.xdata ();
 
       retval = H5Dwrite (data_hid, complex_type_hid, octave_H5S_ALL, octave_H5S_ALL,
                          octave_H5P_DEFAULT, ctmp) >= 0;