TRILABS-277 Use JIRA number as #ifdef

This commit is contained in:
Allen Byrne
2020-08-15 17:25:22 -05:00
parent 94ae09469b
commit 57c4aeb0cc
5 changed files with 50 additions and 4 deletions

View File

@@ -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("");
}