diff 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
line wrap: on
line diff
--- a/libinterp/octave-value/ov-cell.cc	Thu Feb 02 17:31:55 2023 -0800
+++ b/libinterp/octave-value/ov-cell.cc	Thu Feb 02 17:33:17 2023 -0800
@@ -1339,7 +1339,7 @@
       string_vector s = args(0).xstring_vector_value ("cellstr: argument STRING must be a 2-D character array");
 
       return ovl (s.isempty () ? Cell (octave_value (""))
-                  : Cell (s, true));
+                               : Cell (s, true));
     }
 }