diff libinterp/octave-value/ov-classdef.cc @ 30133:938794bc82b7

maint: use "m_" prefix for member variables in class octave_base_value. * ov-base-diag.cc, ov-base.cc, ov-base.h, ov-cell.cc, ov-class.cc, ov-classdef.cc, ov-java.cc, ov-perm.cc, ov-re-diag.cc, ov-struct.cc, ov.cc, ov.h: Use "m_" prefix for member variables in class octave_base_value.
author Rik <rik@octave.org>
date Tue, 07 Sep 2021 15:26:47 -0700
parents 7d6709900da7
children c789e728d57a
line wrap: on
line diff
--- a/libinterp/octave-value/ov-classdef.cc	Tue Sep 07 14:39:08 2021 -0700
+++ b/libinterp/octave-value/ov-classdef.cc	Tue Sep 07 15:26:47 2021 -0700
@@ -88,7 +88,7 @@
 
           args(1) = make_idx_args (type, idx, "subsref");
 
-          count++;
+          m_count++;
           args(0) = octave_value (this);
 
           retval = meth.execute (args, nargout, true, "subsref");
@@ -131,7 +131,7 @@
 
           args(1) = make_idx_args (type, idx, "subsref");
 
-          count++;
+          m_count++;
           args(0) = octave_value (this);
 
           retval = meth.execute (args, 1, true, "subsref");
@@ -167,7 +167,7 @@
 
           args(1) = make_idx_args (type, idx, "subsasgn");
 
-          count++;
+          m_count++;
           args(0) = octave_value (this);
           args(2) = rhs;
 
@@ -216,7 +216,7 @@
 
       if (meth.ok ())
         {
-          count++;
+          m_count++;
           octave_value_list args (1, octave_value (this));
 
           octave_value_list lv = meth.execute (args, 1, true, "size");
@@ -246,7 +246,7 @@
         {
           octave_value_list args (idx.length () + 1, octave_value ());
 
-          count++;
+          m_count++;
           args(0) = octave_value (this);
 
           for (octave_idx_type i = 0; i < idx.length (); i++)