From 8738df19b46db33a459d4fea26d4b22ed1bcd0ee Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 8 Apr 2003 21:19:09 -0500 Subject: [svn-r6609] Purpose: Code cleanup Description: Got rid of anonymous inline struct for filter information in a pipeline and replaced with typedef'd type. Solution: Platforms tested: FreeBSD 4.8 (sleipnir) w/szip Linux 2.4 (sleipnir) w/szip Solaris 2.7 (arabica) w/FORTRAN IRIX64 6.5 (modi4) w/szip, FORTRAN & parallel Misc. update: --- src/H5Oprivate.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index 25868b2..f4292e6 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -152,13 +152,7 @@ typedef struct H5O_bogus_t { typedef struct H5O_pline_t { size_t nfilters; /*num filters defined */ size_t nalloc; /*num elements in `filter' array */ - struct { - H5Z_filter_t id; /*filter identification number */ - unsigned flags; /*defn and invocation flags */ - char *name; /*optional filter name */ - size_t cd_nelmts; /*number of elements in cd_values[] */ - unsigned *cd_values; /*client data values */ - } *filter; /*array of filters */ + H5Z_filter_info_t *filter; /*array of filters */ } H5O_pline_t; /* -- cgit v0.12