summaryrefslogtreecommitdiffstats
path: root/tools/src/h5diff
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-08-15 22:25:22 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-08-15 22:25:22 (GMT)
commit57c4aeb0cc0d1f2aca2be85895dd3ecef92f36dd (patch)
tree49cacb62d0ef8e66f35d4aeab1b29df67a27ea81 /tools/src/h5diff
parent94ae09469b75b8c447760f11068c4643a1a53bc7 (diff)
downloadhdf5-57c4aeb0cc0d1f2aca2be85895dd3ecef92f36dd.zip
hdf5-57c4aeb0cc0d1f2aca2be85895dd3ecef92f36dd.tar.gz
hdf5-57c4aeb0cc0d1f2aca2be85895dd3ecef92f36dd.tar.bz2
TRILABS-277 Use JIRA number as #ifdef
Diffstat (limited to 'tools/src/h5diff')
-rw-r--r--tools/src/h5diff/h5diff_common.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/src/h5diff/h5diff_common.c b/tools/src/h5diff/h5diff_common.c
index a4fe3bb..8ed2d37 100644
--- a/tools/src/h5diff/h5diff_common.c
+++ b/tools/src/h5diff/h5diff_common.c
@@ -75,6 +75,7 @@ static void check_options(diff_opt_t* opts)
}
}
+#if TRILABS-227
/*-------------------------------------------------------------------------
* Function: parse_hsize_list
*
@@ -90,7 +91,6 @@ static void check_options(diff_opt_t* opts)
* Return: <none>
*-------------------------------------------------------------------------
*/
-#if 0
static void
parse_hsize_list(const char *h_list, subset_d *d)
{
@@ -140,7 +140,6 @@ parse_hsize_list(const char *h_list, subset_d *d)
d->len = size_count;
H5TOOLS_ENDDEBUG("");
}
-#endif
/*-------------------------------------------------------------------------
* Function: parse_subset_params
@@ -151,7 +150,6 @@ parse_hsize_list(const char *h_list, subset_d *d)
* Failure: NULL
*-------------------------------------------------------------------------
*/
-#if 0
static struct subset_t *
parse_subset_params(const char *dset)
{
@@ -482,10 +480,13 @@ void parse_command_line(int argc, const char* argv[], const char** fname1, const
/*
* TRILABS-227 is complete except for an issue with printing indices
* the following calls will enable subsetting
+ */
+#if TRILABS-227
opts->sset[0] = parse_subset_params(*objname1);
opts->sset[1] = parse_subset_params(*objname2);
- */
+#endif
+
H5TOOLS_ENDDEBUG("");
}