diff libinterp/parse-tree/pt-colon.cc @ 24846:7620f1f5290d

use m_ prefix for member variables in parse tree classes * pt-arg-list.cc, pt-arg-list.h, pt-assign.cc, pt-assign.h, pt-binop.cc, pt-binop.h, pt-bp.cc, pt-bp.h, pt-cbinop.cc, pt-cbinop.h, pt-check.cc, pt-check.h, pt-classdef.cc, pt-classdef.h, pt-cmd.h, pt-colon.cc, pt-colon.h, pt-const.cc, pt-const.h, pt-decl.cc, pt-decl.h, pt-except.cc, pt-except.h, pt-fcn-handle.cc, pt-fcn-handle.h, pt-funcall.cc, pt-funcall.h, pt-id.cc, pt-id.h, pt-idx.cc, pt-idx.h, pt-jit.cc, pt-jit.h, pt-loop.cc, pt-loop.h, pt-misc.h, pt-pr-code.cc, pt-pr-code.h, pt-select.cc, pt-select.h, pt-stmt.cc, pt-stmt.h, pt-tm-const.cc, pt-tm-const.h, pt.cc, pt.h: Use m_ prefix for member variables in parse tree classes. Style fixes.
author John W. Eaton <jwe@octave.org>
date Wed, 07 Mar 2018 14:56:03 -0500
parents 194eb4bd202b
children 6652d3823428
line wrap: on
line diff
--- a/libinterp/parse-tree/pt-colon.cc	Tue Mar 06 13:28:41 2018 -0500
+++ b/libinterp/parse-tree/pt-colon.cc	Wed Mar 07 14:56:03 2018 -0500
@@ -34,9 +34,9 @@
   tree_colon_expression::dup (symbol_scope& scope) const
   {
     tree_colon_expression *new_ce
-      = new tree_colon_expression (op_base ? op_base->dup (scope) : nullptr,
-                                   op_limit ? op_limit->dup (scope) : nullptr,
-                                   op_increment ? op_increment->dup (scope) : nullptr,
+      = new tree_colon_expression (m_base ? m_base->dup (scope) : nullptr,
+                                   m_limit ? m_limit->dup (scope) : nullptr,
+                                   m_increment ? m_increment->dup (scope) : nullptr,
                                    line (), column ());
 
     new_ce->copy_base (*new_ce);