Remove // style comments from source code.

We need to do this periodically because they sneek in.
This commit is contained in:
Dennis Heimbigner 2018-11-16 11:56:32 -07:00
parent 38e6fc6026
commit 0db7b873ef
2 changed files with 6 additions and 8 deletions

View File

@ -107,10 +107,6 @@ typedef struct NC_MPI_INFO {
/* Define known dispatch tables and initializers */
/*Forward*/
// typedef struct NC_Dispatch NC_Dispatch;
extern int NCDISPATCH_initialize(void);
extern int NCDISPATCH_finalize(void);

View File

@ -449,10 +449,12 @@ genbin_writevar(Generator* generator, Symbol* vsym, Bytebuffer* memory,
stat = nc_put_vara(vsym->container->nc_id, vsym->nc_id, start, count, data);
}
check_err(stat,__LINE__,__FILE__);
// /* Reclaim the data */
// stat = ncaux_reclaim_data(vsym->container->nc_id, vsym->typ.basetype->nc_id, data, nelems);
// check_err(stat,__LINE__,__FILE__);
// bbClear(memory); /* reclaim top-level memory */
#if 0
/* Reclaim the data */
stat = ncaux_reclaim_data(vsym->container->nc_id, vsym->typ.basetype->nc_id, data, nelems);
check_err(stat,__LINE__,__FILE__);
bbClear(memory); /* reclaim top-level memory */
#endif
return stat;
}