# HG changeset patch # User John W. Eaton # Date 1218139211 14400 # Node ID dc36eb214129f7ffd5cf504e75f938cf4b4e6141 # Parent 0ff67bd96f8d317144cd97210797e54637bc7776 ov.cc (octave_value::idx_type_value): don't include default argument value in definition diff -r 0ff67bd96f8d -r dc36eb214129 src/ChangeLog --- a/src/ChangeLog Thu Aug 07 15:41:07 2008 -0400 +++ b/src/ChangeLog Thu Aug 07 16:00:11 2008 -0400 @@ -1,5 +1,8 @@ 2008-08-07 John W. Eaton + * ov.cc (octave_value::idx_type_value): Don't include default + argument values in definition. + * src/glrender.h, src/zfstream.h: Don't include config.h. * oct-errno.h: Include . diff -r 0ff67bd96f8d -r dc36eb214129 src/ov.cc --- a/src/ov.cc Thu Aug 07 15:41:07 2008 -0400 +++ b/src/ov.cc Thu Aug 07 16:00:11 2008 -0400 @@ -1231,8 +1231,7 @@ // needing definitions for the SIZEOF_X macros in ov.h. octave_idx_type -octave_value::idx_type_value (bool req_int = false, - bool frc_str_conv = false) const +octave_value::idx_type_value (bool req_int, bool frc_str_conv) const { #if SIZEOF_OCTAVE_IDX_TYPE == SIZEOF_LONG return long_value (req_int, frc_str_conv);