changeset 23844:ca4535a6ee9f

* pt-eval.cc: Style fixes.
author John W. Eaton <jwe@octave.org>
date Tue, 08 Aug 2017 18:22:30 -0400
parents a52eb3f210af
children 3cace95ce563
files libinterp/parse-tree/pt-eval.cc
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/pt-eval.cc	Tue Aug 08 18:21:07 2017 -0400
+++ b/libinterp/parse-tree/pt-eval.cc	Tue Aug 08 18:22:30 2017 -0400
@@ -1339,13 +1339,13 @@
     //
     //   classname.static_function (args, ...);
     //
-    // then we'll just build a complete index list for one big subsref call.
-    // If the expression we are indexing is a classname then base_expr_val will
-    // be an octave_classdef_meta object.
-    // If we have files in a +packagename folder, they will also be an
+    // then we'll just build a complete index list for one big subsref
+    // call.  If the expression we are indexing is a classname then
+    // base_expr_val will be an octave_classdef_meta object.  If we have
+    // files in a +packagename folder, they will also be an
     // octave_classdef_meta object, but we don't want to index them.
 
-    bool indexing_object = (   base_expr_val.isobject ()
+    bool indexing_object = (base_expr_val.isobject ()
                             || base_expr_val.isjava ()
                             || (base_expr_val.is_classdef_meta ()
                                 && ! base_expr_val.is_package ()));
@@ -1444,7 +1444,7 @@
       {
         // This is for +package and other classdef_meta objects
         if (! base_expr_val.is_function ()
-              || base_expr_val.is_classdef_meta ())
+            || base_expr_val.is_classdef_meta ())
           {
             try
               {