changeset 22004:78000c426b73

don't provide default parameter values in forward decls for DEFUNs * defun-int.h (FORWARD_DECLARE_FUNX): Omit default parameter values.
author John W. Eaton <jwe@octave.org>
date Thu, 30 Jun 2016 12:01:02 -0400
parents 2d3972b802ff
children f078dd2c6f27
files libinterp/corefcn/defun-int.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/defun-int.h	Thu Jun 30 11:41:49 2016 -0400
+++ b/libinterp/corefcn/defun-int.h	Thu Jun 30 12:01:02 2016 -0400
@@ -82,7 +82,7 @@
 
 #define FORWARD_DECLARE_FUNX(name) \
   extern OCTAVE_EXPORT octave_value_list \
-  name (const octave_value_list& = octave_value_list (), int = 0)
+  name (const octave_value_list&, int)
 
 #define FORWARD_DECLARE_FUN(name) \
   FORWARD_DECLARE_FUNX (F ## name)