[svn-r16503] merge 16502 from trunk
bug fix: a comma accidently left on a conditional typedef was causing compilition error on AIX tested: linux
This commit is contained in:
@@ -157,13 +157,22 @@ static void h5diff_print_char(char ch);
|
||||
* NaN detection
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#if H5_SIZEOF_LONG_DOUBLE !=0
|
||||
typedef enum dtype_t
|
||||
{
|
||||
FLT_FLOAT, FLT_DOUBLE,
|
||||
#if H5_SIZEOF_LONG_DOUBLE !=0
|
||||
FLT_LDOUBLE,
|
||||
#endif
|
||||
FLT_FLOAT,
|
||||
FLT_DOUBLE,
|
||||
FLT_LDOUBLE
|
||||
} dtype_t;
|
||||
#else
|
||||
|
||||
typedef enum dtype_t
|
||||
{
|
||||
FLT_FLOAT,
|
||||
FLT_DOUBLE
|
||||
} dtype_t;
|
||||
#endif
|
||||
|
||||
static int my_isnan(dtype_t type, void *val);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user