diff libinterp/octave-value/ov-typeinfo.h @ 27932:b018f553fd85

maint: Use Octave coding conventions in libinterp/ * __ftp__.cc, __ichol__.cc, call-stack.cc, error.h, event-manager.cc, file-io.cc, gl-render.cc, graphics.cc, help.cc, input.cc, interpreter.cc, load-path.cc, load-save.cc, ls-hdf5.cc, ls-hdf5.h, mex.cc, oct-hist.cc, oct-stream.cc, sighandlers.h, stack-frame.cc, stack-frame.h, strfns.cc, syminfo.cc, sysdep.cc, text-engine.h, url-handle-manager.h, urlwrite.cc, xpow.cc, __init_fltk__.cc, __ode15__.cc, ccolamd.cc, colamd.cc, cdef-class.cc, cdef-manager.cc, cdef-manager.h, cdef-method.cc, cdef-object.cc, cdef-package.h, cdef-property.cc, ov-class.cc, ov-classdef.cc, ov-cx-sparse.cc, ov-fcn-handle.cc, ov-fcn-inline.cc, ov-fcn.h, ov-java.cc, ov-typeinfo.h, bp-table.cc, jit-ir.h, jit-typeinfo.h, pt-classdef.h, pt-eval.cc, pt-eval.h, pt-idx.cc: Use Octave coding conventions in libinterp.
author Rik <rik@octave.org>
date Fri, 10 Jan 2020 17:25:12 -0800
parents bd51beb6205e
children 35f974bab4c8 0a5b15007766
line wrap: on
line diff
--- a/libinterp/octave-value/ov-typeinfo.h	Fri Jan 10 13:19:38 2020 -0800
+++ b/libinterp/octave-value/ov-typeinfo.h	Fri Jan 10 17:25:12 2020 -0800
@@ -50,20 +50,20 @@
     typedef void (*non_const_unary_op_fcn) (octave_base_value&);
 
     typedef octave_value (*binary_class_op_fcn)
-    (const octave_value&, const octave_value&);
+      (const octave_value&, const octave_value&);
 
     typedef octave_value (*binary_op_fcn)
-    (const octave_base_value&, const octave_base_value&);
+      (const octave_base_value&, const octave_base_value&);
 
     typedef octave_value (*cat_op_fcn)
-    (octave_base_value&, const octave_base_value&,
+      (octave_base_value&, const octave_base_value&,
      const Array<octave_idx_type>& ra_idx);
 
     typedef octave_value (*assign_op_fcn)
-    (octave_base_value&, const octave_value_list&, const octave_base_value&);
+      (octave_base_value&, const octave_value_list&, const octave_base_value&);
 
     typedef octave_value (*assignany_op_fcn)
-    (octave_base_value&, const octave_value_list&, const octave_value&);
+      (octave_base_value&, const octave_value_list&, const octave_value&);
 
     explicit type_info (int init_tab_sz = 16);