comparison libinterp/corefcn/bsxfun.cc @ 18111:b560bac0fca2

maint: Don't use space between 'args' and '(' when doing indexing. * libinterp/corefcn/__contourc__.cc, libinterp/corefcn/__pchip_deriv__.cc, libinterp/corefcn/besselj.cc, libinterp/corefcn/bsxfun.cc, libinterp/corefcn/cellfun.cc, libinterp/corefcn/data.cc, libinterp/corefcn/dlmread.cc, libinterp/corefcn/file-io.cc, libinterp/corefcn/graphics.cc, libinterp/corefcn/help.cc, libinterp/corefcn/lu.cc, libinterp/corefcn/matrix_type.cc, libinterp/corefcn/pr-output.cc, libinterp/corefcn/sparse.cc, libinterp/corefcn/strfns.cc, libinterp/corefcn/syscalls.cc, libinterp/corefcn/tril.cc: maint: Don't use space between 'args' and '(' when indexing.
author Rik <rik@octave.org>
date Thu, 05 Dec 2013 16:11:14 -0800
parents 6a71e5030df5
children 4197fc428c7d
comparison
equal deleted inserted replaced
18109:2217bc116aa9 18111:b560bac0fca2
350 } 350 }
351 else if (! (args(0).is_function_handle () 351 else if (! (args(0).is_function_handle ()
352 || args(0).is_inline_function ())) 352 || args(0).is_inline_function ()))
353 error ("bsxfun: F must be a string or function handle"); 353 error ("bsxfun: F must be a string or function handle");
354 354
355 const octave_value A = args (1); 355 const octave_value A = args(1);
356 const octave_value B = args (2); 356 const octave_value B = args(2);
357 357
358 if (func.is_builtin_function () 358 if (func.is_builtin_function ()
359 || (func.is_function_handle () 359 || (func.is_function_handle ()
360 && ! A.is_object () && ! B.is_object ())) 360 && ! A.is_object () && ! B.is_object ()))
361 { 361 {