Skip to content

Commit be850bf

Browse files
committed
H5*: remove unused nargout argument
1 parent 838a990 commit be850bf

15 files changed

+67
-67
lines changed

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OCTAVE ?= octave
22
MKOCTFILE ?= mkoctfile
3-
CFLAGS = -Wall -g
3+
CFLAGS = -Wall -Wextra -g
44
INCLUDES := $(shell ${OCTAVE} -f --eval "printf ('%s', __octave_config_info__().build_environment.HDF5_CPPFLAGS)")
55

66
LIBS := $(shell ${OCTAVE} -f --eval "printf ('%s %s', __octave_config_info__().build_environment.HDF5_LDFLAGS, __octave_config_info__().build_environment.HDF5_LIBS)")

src/__H5A__.cc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2525

2626
// PKG_ADD: autoload ("__H5A_close__", "__H5A__.oct");
2727
// PKG_DEL: autoload ("__H5A_close__", "__H5A__.oct", "remove");
28-
DEFUN_DLD(__H5A_close__, args, nargout,
28+
DEFUN_DLD(__H5A_close__, args, ,
2929
"-*- texinfo -*-\n\
3030
@deftypefn {oct-hdf5} { } H5A.close (@var{attr_id})\n\
3131
Terminates access to the attribute specified by @var{attr_id}.\n\
@@ -69,7 +69,7 @@ See original function at \
6969

7070
// PKG_ADD: autoload ("__H5A_create__", "__H5A__.oct");
7171
// PKG_DEL: autoload ("__H5A_create__", "__H5A__.oct", "remove");
72-
DEFUN_DLD(__H5A_create__, args, nargout,
72+
DEFUN_DLD(__H5A_create__, args, ,
7373
"-*- texinfo -*-\n\
7474
@deftypefn {oct-hdf5} {@var{attribute_id} =} H5A.create (@var{loc_id}, @var{attr_name}, @var{type_id}, @var{space_id}, @var{acpl_id})\n\
7575
@deftypefnx {oct-hdf5} {@var{attribute_id} =} H5A.create (@var{loc_id}, @var{attr_name}, @var{type_id}, @var{space_id}, @var{acpl_id}, @var{aapl_id},)\n\
@@ -138,7 +138,7 @@ See original function at \
138138

139139
// PKG_ADD: autoload ("__H5A_get_num_attrs__", "__H5A__.oct");
140140
// PKG_DEL: autoload ("__H5A_get_num_attrs__", "__H5A__.oct", "remove");
141-
DEFUN_DLD(__H5A_get_num_attrs__, args, nargout,
141+
DEFUN_DLD(__H5A_get_num_attrs__, args, ,
142142
"-*- texinfo -*-\n\
143143
@deftypefn {oct-hdf5} {@var{attr_count} =} H5A.get_num_attrs (@var{loc_id})\n\
144144
Return the number of attributes if successful; otherwise return a negative \
@@ -188,7 +188,7 @@ See original function at \
188188

189189
// PKG_ADD: autoload ("__H5A_get_space__", "__H5A__.oct");
190190
// PKG_DEL: autoload ("__H5A_get_space__", "__H5A__.oct", "remove");
191-
DEFUN_DLD(__H5A_get_space__, args, nargout,
191+
DEFUN_DLD(__H5A_get_space__, args, ,
192192
"-*- texinfo -*-\n\
193193
@deftypefn {oct-hdf5} {@var{space_id} = } H5A.get_space (@var{attr_id})\n\
194194
Retrieve a copy of the dataspace for an attribute @var{attr_id}.\n\
@@ -239,7 +239,7 @@ See original function at \
239239

240240
// PKG_ADD: autoload ("__H5A_get_type__", "__H5A__.oct");
241241
// PKG_DEL: autoload ("__H5A_get_type__", "__H5A__.oct", "remove");
242-
DEFUN_DLD(__H5A_get_type__, args, nargout,
242+
DEFUN_DLD(__H5A_get_type__, args, ,
243243
"-*- texinfo -*-\n\
244244
@deftypefn {oct-hdf5} {@var{type_id} = } H5A.get_type (@var{attr_id})\n\
245245
Return a datatype identifier if successful; otherwise returns a negative \
@@ -291,7 +291,7 @@ See original function at \
291291

292292
// PKG_ADD: autoload ("__H5A_iterate__", "__H5A__.oct");
293293
// PKG_DEL: autoload ("__H5A_iterate__", "__H5A__.oct", "remove");
294-
DEFUN_DLD(__H5A_iterate__, args, nargout,
294+
DEFUN_DLD(__H5A_iterate__, args, ,
295295
"-*- texinfo -*-\n\
296296
@deftypefn {oct-hdf5} {[@var{status}, @var{idx_out}, @var{opdata_out}] =} H5A.iterate (@var{loc_id}, @var{idx_type}, @var{order}, @var{idx_in}, @var{fcn}, @var{opdata_in})\n\
297297
Iterate over the attributes attached to the dataset or group specified\n\
@@ -424,7 +424,7 @@ See original function at \
424424

425425
// PKG_ADD: autoload ("__H5A_iterate_by_name__", "__H5A__.oct");
426426
// PKG_DEL: autoload ("__H5A_iterate_by_name__", "__H5A__.oct", "remove");
427-
DEFUN_DLD(__H5A_iterate_by_name__, args, nargout,
427+
DEFUN_DLD(__H5A_iterate_by_name__, args, ,
428428
"-*- texinfo -*-\n\
429429
@deftypefn {oct-hdf5} {[@var{status}, @var{idx_out}, @var{opdata_out}] =} H5A.iterate_by_name (@var{loc_id}, @var{name}, @var{idx_type}, @var{order}, @var{idx_in}, @var{fcn}, @var{opdata_in}, @var{lapd_id})\n\
430430
Iterate over the attributes attached to the dataset or group specified\n\
@@ -574,7 +574,7 @@ See original function at \
574574

575575
// PKG_ADD: autoload ("__H5A_open__", "__H5A__.oct");
576576
// PKG_DEL: autoload ("__H5A_open__", "__H5A__.oct", "remove");
577-
DEFUN_DLD(__H5A_open__, args, nargout,
577+
DEFUN_DLD(__H5A_open__, args, ,
578578
"-*- texinfo -*-\n\
579579
@deftypefn {oct-hdf5} {@var{attr_id} =} H5A.open (@var{obj_id}, @var{name}, @var{aapl_id})\n\
580580
Open an existing attribute, @var{name}, that is attached to an object\n\
@@ -626,7 +626,7 @@ See original function at \
626626

627627
// PKG_ADD: autoload ("__H5A_open_name__", "__H5A__.oct");
628628
// PKG_DEL: autoload ("__H5A_open_name__", "__H5A__.oct", "remove");
629-
DEFUN_DLD(__H5A_open_name__, args, nargout,
629+
DEFUN_DLD(__H5A_open_name__, args, ,
630630
"-*- texinfo -*-\n\
631631
@deftypefn {} {@var{attr_id} =} H5A.open_name (@var{loc_id}, @var{name})\n\
632632
Open an attribute specified by its name, @var{name}, which is attached to\n\
@@ -666,7 +666,7 @@ See original function at \
666666

667667
// PKG_ADD: autoload ("__H5A_read__", "__H5A__.oct");
668668
// PKG_DEL: autoload ("__H5A_read__", "__H5A__.oct", "remove");
669-
DEFUN_DLD(__H5A_read__, args, nargout,
669+
DEFUN_DLD(__H5A_read__, args, ,
670670
"-*- texinfo -*-\n\
671671
@deftypefn {} {@var{data} = } H5A.read (@var{attr_id})\n\
672672
@deftypefnx {} {@var{data} = } H5A.read (@var{attr_id}, @var{mem_type_id})\n\
@@ -737,7 +737,7 @@ See original function at \
737737

738738
// PKG_ADD: autoload ("__H5A_write__", "__H5A__.oct");
739739
// PKG_DEL: autoload ("__H5A_write__", "__H5A__.oct", "remove");
740-
DEFUN_DLD(__H5A_write__, args, nargout,
740+
DEFUN_DLD(__H5A_write__, args, ,
741741
"-*- texinfo -*-\n\
742742
@deftypefn {} {} H5A.write (@var{attribute_id}, @var{mem_type_id}, @var{data})\n\
743743
Write an attribute, specified with @var{attribute_id}.\n\

src/__H5D__.cc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2424
#include "./util/h5_data_util.h"
2525
// PKG_ADD: autoload ("__H5D_close__", "__H5D__.oct");
2626
// PKG_DEL: autoload ("__H5D_close__", "__H5D__.oct", "remove");
27-
DEFUN_DLD(__H5D_close__, args, nargout,
27+
DEFUN_DLD(__H5D_close__, args, ,
2828
"-*- texinfo -*-\n\
2929
@deftypefn {} { } H5D.close (@var{dataset_id})\n\
3030
End access to a dataset specified by @var{dataset_id} and releases resources\n\
@@ -73,7 +73,7 @@ See original function at \
7373

7474
// PKG_ADD: autoload ("__H5D_create__", "__H5D__.oct");
7575
// PKG_DEL: autoload ("__H5D_create__", "__H5D__.oct", "remove");
76-
DEFUN_DLD(__H5D_create__, args, nargout,
76+
DEFUN_DLD(__H5D_create__, args, ,
7777
"-*- texinfo -*-\n\
7878
@deftypefn {} {@var{dataset_id} =} H5D.create (@var{loc_id}, @var{name}, @var{dtype_id}, @var{space_id}, @var{lcpl_id})\n\
7979
@deftypefnx {} {@var{dataset_id} =} H5D.create (@var{loc_id}, @var{name}, @var{dtype_id}, @var{space_id}, @var{lcpl_id}, @var{dcpl_id}, @var{dapl_id})\n\
@@ -145,7 +145,7 @@ See original function at \
145145

146146
// PKG_ADD: autoload ("__H5D_get_create_plist__", "__H5D__.oct");
147147
// PKG_DEL: autoload ("__H5D_get_create_plist__", "__H5D__.oct", "remove");
148-
DEFUN_DLD(__H5D_get_create_plist__, args, nargout,
148+
DEFUN_DLD(__H5D_get_create_plist__, args, ,
149149
"-*- texinfo -*-\n\
150150
@deftypefn {} {@var{dcpl_id} = } H5D.get_create_plist (@var{dataset_id})\n\
151151
Return an identifier for a copy of the dataset creation property list\n\
@@ -191,7 +191,7 @@ See original function at \
191191

192192
// PKG_ADD: autoload ("__H5D_get_space__", "__H5D__.oct");
193193
// PKG_DEL: autoload ("__H5D_get_space__", "__H5D__.oct", "remove");
194-
DEFUN_DLD(__H5D_get_space__, args, nargout,
194+
DEFUN_DLD(__H5D_get_space__, args, ,
195195
"-*- texinfo -*-\n\
196196
@deftypefn {} {@var{space_id} = } H5D.get_space (@var{dataset_id})\n\
197197
Make a copy of the dataspace of the dataset specified by @var{dataset_id}.\n\
@@ -240,7 +240,7 @@ See original function at \
240240

241241
// PKG_ADD: autoload ("__H5D_get_type__", "__H5D__.oct");
242242
// PKG_DEL: autoload ("__H5D_get_type__", "__H5D__.oct", "remove");
243-
DEFUN_DLD(__H5D_get_type__, args, nargout,
243+
DEFUN_DLD(__H5D_get_type__, args, ,
244244
"-*- texinfo -*-\n\
245245
@deftypefn {} {@var{type_id} = } H5D.get_type (@var{dataset_id})\n\
246246
Return an identifier for a copy of the datatype for a dataset.\n\
@@ -290,7 +290,7 @@ See original function at \
290290

291291
// PKG_ADD: autoload ("__H5D_open__", "__H5D__.oct");
292292
// PKG_DEL: autoload ("__H5D_open__", "__H5D__.oct", "remove");
293-
DEFUN_DLD(__H5D_open__, args, nargout,
293+
DEFUN_DLD(__H5D_open__, args, ,
294294
"-*- texinfo -*-\n\
295295
@deftypefn {} {@var{dataset_id} =} H5D.open (@var{loc_id}, @var{name}, @var{dapl_id})\n\
296296
Open the existing dataset specified by a location identifier and name,\n\
@@ -351,7 +351,7 @@ See original function at \
351351

352352
// PKG_ADD: autoload ("__H5D_read__", "__H5D__.oct");
353353
// PKG_DEL: autoload ("__H5D_read__", "__H5D__.oct", "remove");
354-
DEFUN_DLD(__H5D_read__, args, nargout,
354+
DEFUN_DLD(__H5D_read__, args, ,
355355
"-*- texinfo -*-\n\
356356
@deftypefn {} {@var{data} = } H5D.read (@var{dataset_id})\n\
357357
@deftypefnx {} {@var{data} = } H5D.read (@var{dataset_id}, @var{mem_type_id}, @var{mem_space_id}, @var{file_space_id}, @var{xfer_plist_id})\n\
@@ -513,7 +513,7 @@ See original function at \
513513

514514
// PKG_ADD: autoload ("__H5D_write__", "__H5D__.oct");
515515
// PKG_DEL: autoload ("__H5D_write__", "__H5D__.oct", "remove");
516-
DEFUN_DLD(__H5D_write__, args, nargout,
516+
DEFUN_DLD(__H5D_write__, args, ,
517517
"-*- texinfo -*-\n\
518518
@deftypefn {} {} H5D.write (@var{dataset_id}, @var{mem_type_id}, @var{mem_space_id}, @var{file_space_id}, @var{xfer_plist_id}, @var{data})\n\
519519
@seealso{}\n\

src/__H5E__.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ error_handler (unsigned n, const H5E_error2_t *err_desc, void* exception_ptr)
7070
}
7171
// PKG_ADD: autoload ("__H5E_get_class_name__", "__H5E__.oct");
7272
// PKG_DEL: autoload ("__H5E_get_class_name__", "__H5E__.oct", "remove");
73-
DEFUN_DLD(__H5E_get_class_name__, args, nargout,
73+
DEFUN_DLD(__H5E_get_class_name__, args, ,
7474
"-*- texinfo -*-\n\
7575
@deftypefn {} {@var{cname} =} H5E.get_class_name (@var{class_id})\n\
7676
@seealso{H5E.walk}\n\
@@ -97,7 +97,7 @@ DEFUN_DLD(__H5E_get_class_name__, args, nargout,
9797

9898
// PKG_ADD: autoload ("__H5E_get_major__", "__H5E__.oct");
9999
// PKG_DEL: autoload ("__H5E_get_major__", "__H5E__.oct", "remove");
100-
DEFUN_DLD(__H5E_get_major__, args, nargout,
100+
DEFUN_DLD(__H5E_get_major__, args, ,
101101
"-*- texinfo -*-\n\
102102
@deftypefn {} {@var{err_msg} =} H5E.get_major (@var{maj_num})\n\
103103
@seealso{H5E.walk}\n\
@@ -129,7 +129,7 @@ DEFUN_DLD(__H5E_get_major__, args, nargout,
129129

130130
// PKG_ADD: autoload ("__H5E_get_msg__", "__H5E__.oct");
131131
// PKG_DEL: autoload ("__H5E_get_msg__", "__H5E__.oct", "remove");
132-
DEFUN_DLD(__H5E_get_msg__, args, nargout,
132+
DEFUN_DLD(__H5E_get_msg__, args, ,
133133
"-*- texinfo -*-\n\
134134
@deftypefn {} {@var{msg} =} H5E.get_msg (@var{msg_id})\n\
135135
@seealso{H5E.walk}\n\
@@ -161,7 +161,7 @@ DEFUN_DLD(__H5E_get_msg__, args, nargout,
161161

162162
// PKG_ADD: autoload ("__H5E_oclear__", "__H5E__.oct");
163163
// PKG_DEL: autoload ("__H5E_oclear__", "__H5E__.oct", "remove");
164-
DEFUN_DLD(__H5E_oclear__, args, nargout,
164+
DEFUN_DLD(__H5E_oclear__, args, ,
165165
"-*- texinfo -*-\n\
166166
@deftypefn {} {} H5E.oclear ()\n\
167167
@seealso{H5E.walk}\n\
@@ -186,7 +186,7 @@ DEFUN_DLD(__H5E_oclear__, args, nargout,
186186

187187
// PKG_ADD: autoload ("__H5E_set_auto__", "__H5E__.oct");
188188
// PKG_DEL: autoload ("__H5E_set_auto__", "__H5E__.oct", "remove");
189-
DEFUN_DLD(__H5E_set_auto__, args, nargout,
189+
DEFUN_DLD(__H5E_set_auto__, args, ,
190190
"-*- texinfo -*-\n\
191191
@deftypefn {} {} H5E.set_auto (@var{tf})\n\
192192
@seealso{H5E.walk}\n\
@@ -218,7 +218,7 @@ DEFUN_DLD(__H5E_set_auto__, args, nargout,
218218

219219
// PKG_ADD: autoload ("__H5E_walk__", "__H5E__.oct");
220220
// PKG_DEL: autoload ("__H5E_walk__", "__H5E__.oct", "remove");
221-
DEFUN_DLD(__H5E_walk__, args, nargout,
221+
DEFUN_DLD(__H5E_walk__, args, ,
222222
"-*- texinfo -*-\n\
223223
@deftypefn {} {} H5E.walk (@var{direction}, @var{fcn})\n \
224224
@seealso{H5E.clear}\n \

src/__H5F__.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2323
#include "./util/h5_oct_util.h"
2424
// PKG_ADD: autoload ("__H5F_close__", "__H5F__.oct");
2525
// PKG_DEL: autoload ("__H5F_close__", "__H5F__.oct", "remove");
26-
DEFUN_DLD(__H5F_close__, args, nargout,
26+
DEFUN_DLD(__H5F_close__, args, ,
2727
"-*- texinfo -*-\n\
2828
@deftypefn {} {} H5F.close (@var{file_id})\n\
2929
@seealso{}\n\
@@ -45,7 +45,7 @@ DEFUN_DLD(__H5F_close__, args, nargout,
4545

4646
// PKG_ADD: autoload ("__H5F_create__", "__H5F__.oct");
4747
// PKG_DEL: autoload ("__H5F_create__", "__H5F__.oct", "remove");
48-
DEFUN_DLD(__H5F_create__, args, nargout,
48+
DEFUN_DLD(__H5F_create__, args, ,
4949
"-*- texinfo -*-\n\
5050
@deftypefn {} {@var{fid} =} H5F.create (@var{fname})\n\
5151
@deftypefnx {} {@var{fid} =} H5F.create (@var{fname}, @var{flags})\n\
@@ -92,7 +92,7 @@ DEFUN_DLD(__H5F_create__, args, nargout,
9292

9393
// PKG_ADD: autoload ("__H5F_open__", "__H5F__.oct");
9494
// PKG_DEL: autoload ("__H5F_open__", "__H5F__.oct", "remove");
95-
DEFUN_DLD(__H5F_open__, args, nargout,
95+
DEFUN_DLD(__H5F_open__, args, ,
9696
"-*- texinfo -*-\n\
9797
@deftypefn {} {@var{fid} =} H5F.open (@var{fname})\n\
9898
@deftypefnx {} {@var{fid} =} H5F.open (@var{fname}, @var{flags})\n\

src/__H5G__.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2424

2525
// PKG_ADD: autoload ("__H5G_close__", "__H5G__.oct");
2626
// PKG_DEL: autoload ("__H5G_close__", "__H5G__.oct", "remove");
27-
DEFUN_DLD(__H5G_close__, args, nargout,
27+
DEFUN_DLD(__H5G_close__, args, ,
2828
"-*- texinfo -*-\n\
2929
@deftypefn {} {} H5G.close (@var{group_id})\n\
3030
Release resources used by a group which was opened by @code{H5G.create}\n\
@@ -54,7 +54,7 @@ Failure to release a group with this call will result in resource leaks.\n\
5454

5555
// PKG_ADD: autoload ("__H5G_create__", "__H5G__.oct");
5656
// PKG_DEL: autoload ("__H5G_create__", "__H5G__.oct", "remove");
57-
DEFUN_DLD(__H5G_create__, args, nargout,
57+
DEFUN_DLD(__H5G_create__, args, ,
5858
"-*- texinfo -*-\n\
5959
@deftypefn {} {@var{group_id} =} H5G.create (@var{loc_id}, @var{name})\n\
6060
@deftypefnx {} {@var{group_id} =} H5G.create (@var{loc_id}, @var{name}, @var{lcpl_id}, @var{gcpl_id}, @var{gapl_id})\n\
@@ -121,7 +121,7 @@ is no longer required.\n\
121121

122122
// PKG_ADD: autoload ("__H5G_open__", "__H5G__.oct");
123123
// PKG_DEL: autoload ("__H5G_open__", "__H5G__.oct", "remove");
124-
DEFUN_DLD(__H5G_open__, args, nargout,
124+
DEFUN_DLD(__H5G_open__, args, ,
125125
"-*- texinfo -*-\n\
126126
@deftypefn {} {@var{group_id} =} H5G.open (@var{loc_id}, @var{name}, @var{gapl_id})\n\
127127
Open an existing group, @var{name}, at the location specified by\n\

src/__H5I__.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2424

2525
// PKG_ADD: autoload ("__H5I_get_name__", "__H5I__.oct");
2626
// PKG_DEL: autoload ("__H5I_get_name__", "__H5I__.oct", "remove");
27-
DEFUN_DLD(__H5I_get_name__, args, nargout,
27+
DEFUN_DLD(__H5I_get_name__, args, ,
2828
"-*- texinfo -*-\n\
2929
@deftypefn {} {@var{info_struct} =} H5I.get_name (@var{obj_id})\n\
3030
Retrieve a name for the object identified by @var{obj_id}.\n\

src/__H5LT__.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2626

2727
// PKG_ADD: autoload ("__H5LT_dtype_to_struct__", "__H5LT__.oct");
2828
// PKG_DEL: autoload ("__H5LT_dtype_to_struct__", "__H5LT__.oct", "remove");
29-
DEFUN_DLD(__H5LT_dtype_to_struct__, args, nargout,
29+
DEFUN_DLD(__H5LT_dtype_to_struct__, args, ,
3030
"-*- texinfo -*-\n\
3131
@deftypefn {} {@var{str} = } H5LT.dtype_to_struct (@var{type_id})\n\
3232
@seealso{}\n\
@@ -52,7 +52,7 @@ DEFUN_DLD(__H5LT_dtype_to_struct__, args, nargout,
5252

5353
// PKG_ADD: autoload ("__H5LT_dtype_to_text__", "__H5LT__.oct");
5454
// PKG_DEL: autoload ("__H5LT_dtype_to_text__", "__H5LT__.oct", "remove");
55-
DEFUN_DLD(__H5LT_dtype_to_text__, args, nargout,
55+
DEFUN_DLD(__H5LT_dtype_to_text__, args, ,
5656
"-*- texinfo -*-\n\
5757
// @deftypefn {} {@var{str} = } H5LT.dtype_to_text (@var{type_id})\n\
5858
// @seealso{}\n\

src/__H5L__.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2424

2525
// PKG_ADD: autoload ("__H5L_iterate__", "__H5L__.oct");
2626
// PKG_DEL: autoload ("__H5L_iterate__", "__H5L__.oct", "remove");
27-
DEFUN_DLD(__H5L_iterate__, args, nargout,
27+
DEFUN_DLD(__H5L_iterate__, args, ,
2828
"-*- texinfo -*-\n\
2929
@deftypefn {} {[@var{status}, @var{idx_out}, @var{opdata_out}] =} H5L.iterate (@var{group_id}, @var{idx_type}, @var{order}, @var{idx_in}, @var{fcn}, @var{opdata_in})\n\
3030
@seealso{}\n\
@@ -73,7 +73,7 @@ DEFUN_DLD(__H5L_iterate__, args, nargout,
7373

7474
// PKG_ADD: autoload ("__H5L_iterate_by_name__", "__H5L__.oct");
7575
// PKG_DEL: autoload ("__H5L_iterate_by_name__", "__H5L__.oct", "remove");
76-
DEFUN_DLD(__H5L_iterate_by_name__, args, nargout,
76+
DEFUN_DLD(__H5L_iterate_by_name__, args, ,
7777
"-*- texinfo -*-\n\
7878
@deftypefn {} {[@var{status}, @var{idx_out}, @var{opdata_out}] =} H5L.iterateiterate_by_name (@var{group_id}, @var{name}, @var{idx_type}, @var{order}, @var{idx_in}, @var{fcn}, @var{opdata_in}, @var{lapl_id})\n\
7979
@seealso{}\n\

src/__H5ML__.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
2323
#include "./util/h5_oct_util.h"
2424
// PKG_ADD: autoload ("__H5ML_compare_values__", "__H5ML__.oct");
2525
// PKG_DEL: autoload ("__H5ML_compare_values__", "__H5ML__.oct", "remove");
26-
DEFUN_DLD(__H5ML_compare_values__, args, nargout,
26+
DEFUN_DLD(__H5ML_compare_values__, args, ,
2727
"-*- texinfo -*-\n\
2828
@deftypefn {} {@var{tf} =} H5ML.compare_values (@var{val1}, @var{val2})\n\
2929
@seealso{}\n\
@@ -44,7 +44,7 @@ DEFUN_DLD(__H5ML_compare_values__, args, nargout,
4444

4545
// PKG_ADD: autoload ("__H5ML_get_constant_names__", "__H5ML__.oct");
4646
// PKG_DEL: autoload ("__H5ML_get_constant_names__", "__H5ML__.oct", "remove");
47-
DEFUN_DLD(__H5ML_get_constant_names__, args, nargout,
47+
DEFUN_DLD(__H5ML_get_constant_names__, args, ,
4848
"-*- texinfo -*-\n\
4949
@deftypefn {} {@var{names} =} H5ML.get_constant_names ()\n\
5050
@seealso{}\n\
@@ -74,7 +74,7 @@ DEFUN_DLD(__H5ML_get_constant_names__, args, nargout,
7474

7575
// PKG_ADD: autoload ("__H5ML_get_constant_value__", "__H5ML__.oct");
7676
// PKG_DEL: autoload ("__H5ML_get_constant_value__", "__H5ML__.oct", "remove");
77-
DEFUN_DLD(__H5ML_get_constant_value__, args, nargout,
77+
DEFUN_DLD(__H5ML_get_constant_value__, args, ,
7878
"-*- texinfo -*-\n\
7979
@deftypefn {} {@var{retval} =} H5ML.get_constant_value (@var{name})\n\
8080
@seealso{}\n\

0 commit comments

Comments
 (0)