comparison libinterp/corefcn/stack-frame.cc @ 30346:91c6288781ba

maint: Shorten some long lines in libinterp to <= 80 characters (bug #57599) * __isprimelarge__.cc, bsxfun.cc, cellfun.cc, chol.cc, data.cc, error.h, event-manager.h, filter.cc, find.cc, gcd.cc, gl-render.h, gl2ps-print.cc, graphics.cc, graphics.in.h, hash.cc, help.cc, hex2num.cc, input.cc, inv.cc, load-path.cc, load-save.cc, ls-hdf5.cc, ls-hdf5.h, ls-mat5.cc, lu.cc, mappers.cc, matrix_type.cc, max.cc, mex.cc, mxarray.h, oct-errno.in.cc, oct-map.cc, oct-stream.cc, oct-stream.h, pr-output.cc, psi.cc, qr.cc, rand.cc, regexp.cc, sparse-xdiv.h, stack-frame.cc, strfind.cc, strfns.cc, sylvester.cc, symbfact.cc, symrec.h, symscope.cc, typecast.cc, utils.cc, variables.h, xdiv.h, xpow.h, __init_fltk__.cc, __ode15__.cc, audiodevinfo.cc, audioread.cc, convhulln.cc, cdef-class.cc, cdef-class.h, cdef-manager.cc, cdef-method.cc, cdef-object.cc, cdef-object.h, cdef-package.h, cdef-utils.cc, ov-base-diag.cc, ov-base-int.cc, ov-base.h, ov-bool-mat.cc, ov-bool.cc, ov-cell.cc, ov-ch-mat.cc, ov-class.cc, ov-class.h, ov-classdef.cc, ov-colon.h, ov-complex.cc, ov-cx-mat.cc, ov-cx-sparse.cc, ov-dld-fcn.h, ov-fcn-handle.cc, ov-float.cc, ov-flt-complex.cc, ov-flt-cx-diag.cc, ov-flt-cx-mat.cc, ov-flt-re-diag.cc, ov-flt-re-mat.cc, ov-java.cc, ov-lazy-idx.cc, ov-lazy-idx.h, ov-range.cc, ov-re-mat.cc, ov-re-mat.h, ov-re-sparse.cc, ov-scalar.cc, ov-str-mat.cc, ov-struct.cc, ov-typeinfo.cc, ov.cc, ov.h, octave.h, bp-table.cc, bp-table.h, lex.h, oct-lvalue.h, profiler.cc, profiler.h, pt-binop.h, pt-colon.cc, pt-eval.cc, pt-exp.h, pt-select.h: Shorten some long lines in libinterp to <= 80 characters.
author Rik <rik@octave.org>
date Wed, 24 Nov 2021 09:38:51 -0800
parents 3e419a830e90
children 83f9f8bda883
comparison
equal deleted inserted replaced
30345:ba03a127bee1 30346:91c6288781ba
1039 stack_frame * stack_frame::create (tree_evaluator& tw, octave_function *fcn, 1039 stack_frame * stack_frame::create (tree_evaluator& tw, octave_function *fcn,
1040 std::size_t index, 1040 std::size_t index,
1041 const std::shared_ptr<stack_frame>& parent_link, 1041 const std::shared_ptr<stack_frame>& parent_link,
1042 const std::shared_ptr<stack_frame>& static_link) 1042 const std::shared_ptr<stack_frame>& static_link)
1043 { 1043 {
1044 return new compiled_fcn_stack_frame (tw, fcn, index, parent_link, static_link); 1044 return new compiled_fcn_stack_frame (tw, fcn, index,
1045 parent_link, static_link);
1045 } 1046 }
1046 1047
1047 stack_frame * stack_frame::create (tree_evaluator& tw, 1048 stack_frame * stack_frame::create (tree_evaluator& tw,
1048 octave_user_script *script, 1049 octave_user_script *script,
1049 std::size_t index, 1050 std::size_t index,
1057 octave_user_function *fcn, std::size_t index, 1058 octave_user_function *fcn, std::size_t index,
1058 const std::shared_ptr<stack_frame>& parent_link, 1059 const std::shared_ptr<stack_frame>& parent_link,
1059 const std::shared_ptr<stack_frame>& static_link, 1060 const std::shared_ptr<stack_frame>& static_link,
1060 const std::shared_ptr<stack_frame>& access_link) 1061 const std::shared_ptr<stack_frame>& access_link)
1061 { 1062 {
1062 return new user_fcn_stack_frame (tw, fcn, index, parent_link, static_link, access_link); 1063 return new user_fcn_stack_frame (tw, fcn, index,
1064 parent_link, static_link, access_link);
1063 } 1065 }
1064 1066
1065 stack_frame * stack_frame::create (tree_evaluator& tw, 1067 stack_frame * stack_frame::create (tree_evaluator& tw,
1066 octave_user_function *fcn, std::size_t index, 1068 octave_user_function *fcn, std::size_t index,
1067 const std::shared_ptr<stack_frame>& parent_link, 1069 const std::shared_ptr<stack_frame>& parent_link,
1068 const std::shared_ptr<stack_frame>& static_link, 1070 const std::shared_ptr<stack_frame>& static_link,
1069 const local_vars_map& local_vars, 1071 const local_vars_map& local_vars,
1070 const std::shared_ptr<stack_frame>& access_link) 1072 const std::shared_ptr<stack_frame>& access_link)
1071 { 1073 {
1072 return new user_fcn_stack_frame (tw, fcn, index, parent_link, static_link, local_vars, access_link); 1074 return new user_fcn_stack_frame (tw, fcn, index,
1075 parent_link, static_link, local_vars,
1076 access_link);
1073 } 1077 }
1074 1078
1075 stack_frame * stack_frame::create (tree_evaluator& tw, 1079 stack_frame * stack_frame::create (tree_evaluator& tw,
1076 const symbol_scope& scope, std::size_t index, 1080 const symbol_scope& scope, std::size_t index,
1077 const std::shared_ptr<stack_frame>& parent_link, 1081 const std::shared_ptr<stack_frame>& parent_link,