comparison libinterp/octave-value/ov-cell.cc @ 31813:73fdf7f8381b

maint: Use consistent coding style when calling Ffunction(). * __ichol__.cc, call-stack.cc, dot.cc, error.cc, interpreter.cc, __init_fltk__.cc, ov-cell.cc, ov-java.cc, ov-struct.cc: Use consistent coding style when calling Ffunction() by wrapping arguments in "ovl (...)".
author Rik <rik@octave.org>
date Thu, 02 Feb 2023 17:33:17 -0800
parents 21f9b34eb893
children 53c10d69a9be
comparison
equal deleted inserted replaced
31812:174a224a85ab 31813:73fdf7f8381b
1337 else 1337 else
1338 { 1338 {
1339 string_vector s = args(0).xstring_vector_value ("cellstr: argument STRING must be a 2-D character array"); 1339 string_vector s = args(0).xstring_vector_value ("cellstr: argument STRING must be a 2-D character array");
1340 1340
1341 return ovl (s.isempty () ? Cell (octave_value ("")) 1341 return ovl (s.isempty () ? Cell (octave_value (""))
1342 : Cell (s, true)); 1342 : Cell (s, true));
1343 } 1343 }
1344 } 1344 }
1345 1345
1346 DEFUN (struct2cell, args, , 1346 DEFUN (struct2cell, args, ,
1347 doc: /* -*- texinfo -*- 1347 doc: /* -*- texinfo -*-