comparison libinterp/corefcn/strfns.cc @ 21127:df7891224709

maint: Use "return ovl (...)" in DEFUN macros. * cellfun.cc, data.cc, debug.cc, defaults.cc, det.cc, dirfns.cc, dlmread.cc, error.cc, file-io.cc, getrusage.cc, graphics.cc, help.cc, input.cc, inv.cc, kron.cc, load-path.cc, pager.cc, pinv.cc, rand.cc, strfns.cc, urlwrite.cc, chol.cc, ov-classdef.cc, ov-struct.cc: Use "return ovl (...)" in DEFUN macros, rather than "return octave_value (...)".
author Rik <rik@octave.org>
date Thu, 21 Jan 2016 09:47:50 -0800
parents e39e05d90788
children fcac5dbbf9ed
comparison
equal deleted inserted replaced
21126:ba0a4b4f021d 21127:df7891224709
257 } 257 }
258 } 258 }
259 } 259 }
260 } 260 }
261 261
262 // Cannot use ovl. Relies on overloaded octave_value call.
262 return octave_value (result, '\''); 263 return octave_value (result, '\'');
263 } 264 }
264 265
265 /* 266 /*
266 %!assert (strvcat (""), ""); 267 %!assert (strvcat (""), "");