diff libinterp/corefcn/quadcc.cc @ 20801:a542a9bf177e

eliminate return statements after calls to print_usage * graphics.cc, hess.cc, input.cc, kron.cc, load-save.cc, lsode.cc, luinc.cc, matrix_type.cc, md5sum.cc, nproc.cc, pager.cc, pr-output.cc, psi.cc, quadcc.cc, rand.cc, regexp.cc, sighandlers.cc, sqrtm.cc, strfind.cc, sub2ind.cc, sylvester.cc: Eliminate return statements after calls to print_usage.
author John W. Eaton <jwe@octave.org>
date Thu, 03 Dec 2015 19:22:54 -0500
parents a9574e3c6e9e
children 35241c4b696c
line wrap: on
line diff
--- a/libinterp/corefcn/quadcc.cc	Thu Dec 03 18:33:00 2015 -0500
+++ b/libinterp/corefcn/quadcc.cc	Thu Dec 03 19:22:54 2015 -0500
@@ -1588,10 +1588,7 @@
 
   /* Parse the input arguments. */
   if (nargin < 3)
-    {
-      print_usage ();
-      return retval;
-    }
+    print_usage ();
 
   if (args(0).is_function_handle () || args(0).is_inline_function ())
     fcn = args(0).function_value ();